Skip to content

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kitaisreal committed Apr 13, 2024
1 parent e099138 commit 7a8ac49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Interpreters/InterpreterSelectQueryAnalyzer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ InterpreterSelectQueryAnalyzer::InterpreterSelectQueryAnalyzer(
const SelectQueryOptions & select_query_options_)
: query(normalizeAndValidateQuery(query_))
, context(buildContext(context_, select_query_options_))
, query_tree(buildQueryTreeAndRunPasses(query, select_query_options, context, nullptr /*storage*/))
, query_tree(buildQueryTreeAndRunPasses(query, select_query_options_, context, nullptr /*storage*/))
, select_query_options(buildSelectQueryOptionsWithQuotaAndLimits(query_tree, select_query_options_))
, planner(query_tree, select_query_options)
{
Expand All @@ -169,7 +169,7 @@ InterpreterSelectQueryAnalyzer::InterpreterSelectQueryAnalyzer(
const SelectQueryOptions & select_query_options_)
: query(normalizeAndValidateQuery(query_))
, context(buildContext(context_, select_query_options_))
, query_tree(buildQueryTreeAndRunPasses(query, select_query_options, context, storage_))
, query_tree(buildQueryTreeAndRunPasses(query, select_query_options_, context, storage_))
, select_query_options(buildSelectQueryOptionsWithQuotaAndLimits(query_tree, select_query_options_))
, planner(query_tree, select_query_options)
{
Expand Down

0 comments on commit 7a8ac49

Please sign in to comment.