mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
15 lines
327 B
C++
15 lines
327 B
C++
|
#pragma once
|
||
|
|
||
|
#include <Parsers/IAST.h>
|
||
|
#include <Interpreters/InterpreterSelectWithUnionQuery.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
class Context;
|
||
|
|
||
|
std::shared_ptr<InterpreterSelectWithUnionQuery> interpretSubquery(
|
||
|
const ASTPtr & table_expression, const Context & context, size_t subquery_depth, const Names & required_source_columns);
|
||
|
|
||
|
}
|