ClickHouse/src/Planner/CollectSets.h
2022-10-24 10:22:37 +02:00

16 lines
362 B
C++

#pragma once
#include <Planner/PlannerContext.h>
#include <Analyzer/IQueryTreeNode.h>
namespace DB
{
/** Collect prepared sets and sets for subqueries that are necessary to execute IN function and its variations.
* Collected sets are registered in planner context.
*/
void collectSets(const QueryTreeNodePtr & node, PlannerContext & planner_context);
}