Polishing

This commit is contained in:
Igor Nikonov 2022-12-09 12:06:40 +00:00
parent 1658276c41
commit 55da7a0d33
2 changed files with 1 additions and 2 deletions

View File

@ -33,7 +33,7 @@ struct FrameWithParent
using StackWithParent = std::vector<FrameWithParent>;
bool checkForStatefulFunctions(std::vector<FrameWithParent> const & stack, const QueryPlan::Node * node_affect_order)
bool checkForStatefulFunctions(const StackWithParent & stack, const QueryPlan::Node * node_affect_order)
{
chassert(!stack.empty());
chassert(typeid_cast<const SortingStep *>(stack.back().node->step.get()));

View File

@ -1,6 +1,5 @@
SET allow_experimental_analyzer=1;
SET optimize_duplicate_order_by_and_distinct=0;
-- set query_plan_enable_optimizations=0;
SELECT '-- Disable query_plan_remove_redundant_order_by';
SET query_plan_remove_redundant_order_by=0;