mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-30 11:32:03 +00:00
fix
This commit is contained in:
parent
bbf0548007
commit
6ad6c6afa3
@ -783,7 +783,7 @@ Strings Context::getWarnings() const
|
||||
{
|
||||
if (setting.isValueChanged() && setting.isObsolete())
|
||||
{
|
||||
res += (obsolete_settings_count ? ", `" : "`") + setting.getName() + "`";
|
||||
res += (obsolete_settings_count ? ", '" : "'") + setting.getName() + "'";
|
||||
++obsolete_settings_count;
|
||||
}
|
||||
}
|
||||
|
@ -55,7 +55,7 @@ expect eof
|
||||
|
||||
spawn bash -c "source $basedir/../shell_config.sh ; \$CLICKHOUSE_CLIENT_BINARY \$CLICKHOUSE_CLIENT_OPT --disable_suggestion --max_memory_usage_for_all_queries=123 --history_file=$history_file"
|
||||
expect "Warnings:"
|
||||
expect " * Obsolete settings [\`max_memory_usage_for_all_queries\`] is changed. Please check \'select * from system.settings where changed and is_obsolete\' and read the changelog."
|
||||
expect " * Obsolete settings [\'max_memory_usage_for_all_queries\'] is changed. Please check \'select * from system.settings where changed and is_obsolete\' and read the changelog."
|
||||
expect ":) "
|
||||
send -- "q\r"
|
||||
expect eof
|
||||
|
@ -1,5 +1,5 @@
|
||||
Server was built in debug mode. It will work slowly.
|
||||
0
|
||||
Obsolete settings [`multiple_joins_rewriter_version`] is changed. Please check \'select * from system.settings where changed and is_obsolete\' and read the changelog.
|
||||
Obsolete settings [\'multiple_joins_rewriter_version\'] is changed. Please check \'select * from system.settings where changed and is_obsolete\' and read the changelog.
|
||||
1
|
||||
1
|
||||
|
Loading…
Reference in New Issue
Block a user