Merge pull request #56547 from ClickHouse/better-warning

Better warning message
This commit is contained in:
Alexander Gololobov 2023-11-10 10:41:44 +01:00 committed by GitHub
commit 696bd2644f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -846,7 +846,7 @@ Strings Context::getWarnings() const
}
res = res + "]" + (single_element ? " is" : " are")
+ " changed. "
"Please check 'select * from system.settings where changed and is_obsolete' and read the changelog.";
"Please check 'SELECT * FROM system.settings WHERE changed AND is_obsolete' and read the changelog at https://github.com/ClickHouse/ClickHouse/blob/master/CHANGELOG.md";
common_warnings.emplace_back(res);
}

View File

@ -1,5 +1,5 @@
Server was built in debug mode. It will work slowly.
0
Obsolete setting [\'multiple_joins_rewriter_version\'] is changed. Please check \'select * from system.settings where changed and is_obsolete\' and read the changelog.
Obsolete setting [\'multiple_joins_rewriter_version\'] is changed. Please check \'SELECT * FROM system.settings WHERE changed AND is_obsolete\' and read the changelog at https://github.com/ClickHouse/ClickHouse/blob/master/CHANGELOG.md
1
1