2018-10-12 15:41:28 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <Parsers/IAST.h>
|
|
|
|
#include <Interpreters/InterpreterSelectWithUnionQuery.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
std::shared_ptr<InterpreterSelectWithUnionQuery> interpretSubquery(
|
2021-04-10 23:33:54 +00:00
|
|
|
const ASTPtr & table_expression, ContextPtr context, size_t subquery_depth, const Names & required_source_columns);
|
2018-10-12 15:41:28 +00:00
|
|
|
|
2020-02-20 02:56:20 +00:00
|
|
|
std::shared_ptr<InterpreterSelectWithUnionQuery> interpretSubquery(
|
2021-04-10 23:33:54 +00:00
|
|
|
const ASTPtr & table_expression, ContextPtr context, const Names & required_source_columns, const SelectQueryOptions & options);
|
2020-02-20 02:56:20 +00:00
|
|
|
|
2018-10-12 15:41:28 +00:00
|
|
|
}
|