mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 07:01:59 +00:00
Make SHOW CREATE TABLE multiline (because it more readable and also mysql like)
This commit is contained in:
parent
6d80ab1eed
commit
3116b2d29b
@ -73,7 +73,7 @@ BlockInputStreamPtr InterpreterShowCreateQuery::executeImpl()
|
||||
throw Exception("Unable to show the create query of " + show_query->table + ". Maybe it was created by the system.", ErrorCodes::THERE_IS_NO_QUERY);
|
||||
|
||||
std::stringstream stream;
|
||||
formatAST(*create_query, stream, false, true);
|
||||
formatAST(*create_query, stream, false, false);
|
||||
String res = stream.str();
|
||||
|
||||
MutableColumnPtr column = ColumnString::create();
|
||||
|
Loading…
Reference in New Issue
Block a user