mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 02:41:59 +00:00
16 lines
268 B
C++
16 lines
268 B
C++
|
#pragma once
|
||
|
|
||
|
#include <memory>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
struct SelectQueryInfo;
|
||
|
|
||
|
class IQueryTreeNode;
|
||
|
using QueryTreeNodePtr = std::shared_ptr<IQueryTreeNode>;
|
||
|
|
||
|
QueryTreeNodePtr buildQueryTreeForShard(SelectQueryInfo & query_info, QueryTreeNodePtr query_tree_to_modify);
|
||
|
|
||
|
}
|