mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
18 lines
534 B
C++
18 lines
534 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);
|
|
|
|
std::shared_ptr<InterpreterSelectWithUnionQuery> interpretSubquery(
|
|
const ASTPtr & table_expression, const Context & context, const Names & required_source_columns, const SelectQueryOptions & options);
|
|
|
|
}
|