Fix incorrect setting order

(cherry picked from commit 3f22f01e8a)
This commit is contained in:
Raúl Marín 2024-11-06 13:27:11 +01:00 committed by Nikita Mikhaylov
parent 6aa2fe525e
commit ff7e1333c2

View File

@ -55,8 +55,8 @@ void validateCreateQuery(const ASTCreateQuery & query, ContextPtr context)
serialized_query.data() + serialized_query.size(),
"after altering table ",
0,
context->getSettingsRef()[Setting::max_parser_backtracks],
context->getSettingsRef()[Setting::max_parser_depth]);
context->getSettingsRef()[Setting::max_parser_depth],
context->getSettingsRef()[Setting::max_parser_backtracks]);
const auto & new_query = new_query_raw->as<const ASTCreateQuery &>();
/// If there are no columns, then there is nothing much we can do
if (!new_query.columns_list || !new_query.columns_list->columns)