Merge pull request #60162 from ClickHouse/not-too-aggressive

Remove extensively aggressive check
This commit is contained in:
Alexey Milovidov 2024-02-20 09:35:35 +01:00 committed by GitHub
commit b80c1561dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -722,7 +722,7 @@ static std::tuple<ASTPtr, BlockIO> executeQueryImpl(
/// TODO: parser should fail early when max_query_size limit is reached.
ast = parseQuery(parser, begin, end, "", max_query_size, settings.max_parser_depth);
#ifndef NDEBUG
#if 0
/// Verify that AST formatting is consistent:
/// If you format AST, parse it back, and format it again, you get the same string.