ClickHouse/src/Planner/CollectSets.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
362 B
C++
Raw Normal View History

#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.
2022-10-17 15:09:45 +00:00
* Collected sets are registered in planner context.
*/
2022-10-17 15:09:45 +00:00
void collectSets(const QueryTreeNodePtr & node, PlannerContext & planner_context);
}