mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 10:02:01 +00:00
16 lines
362 B
C++
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);
|
|
|
|
}
|