mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 21:42:39 +00:00
132bbce29c
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
62 lines
1.8 KiB
C++
62 lines
1.8 KiB
C++
#include <Interpreters/InterpreterSelectWithUnionQuery.h>
|
|
#include <Parsers/ASTFunction.h>
|
|
#include <Parsers/ASTSelectWithUnionQuery.h>
|
|
#include <Storages/StorageView.h>
|
|
#include <TableFunctions/ITableFunction.h>
|
|
#include <TableFunctions/TableFunctionFactory.h>
|
|
#include <TableFunctions/TableFunctionView.h>
|
|
#include "registerTableFunctions.h"
|
|
|
|
|
|
namespace DB
|
|
{
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int BAD_ARGUMENTS;
|
|
}
|
|
|
|
|
|
const ASTSelectWithUnionQuery & TableFunctionView::getSelectQuery() const
|
|
{
|
|
return *create.select;
|
|
}
|
|
|
|
void TableFunctionView::parseArguments(const ASTPtr & ast_function, ContextPtr /*context*/)
|
|
{
|
|
const auto * function = ast_function->as<ASTFunction>();
|
|
if (function)
|
|
{
|
|
if (auto * select = function->tryGetQueryArgument())
|
|
{
|
|
create.set(create.select, select->clone());
|
|
return;
|
|
}
|
|
}
|
|
throw Exception("Table function '" + getName() + "' requires a query argument.", ErrorCodes::BAD_ARGUMENTS);
|
|
}
|
|
|
|
ColumnsDescription TableFunctionView::getActualTableStructure(ContextPtr context) const
|
|
{
|
|
assert(create.select);
|
|
assert(create.children.size() == 1);
|
|
assert(create.children[0]->as<ASTSelectWithUnionQuery>());
|
|
auto sample = InterpreterSelectWithUnionQuery::getSampleBlock(create.children[0], context);
|
|
return ColumnsDescription(sample.getNamesAndTypesList());
|
|
}
|
|
|
|
StoragePtr TableFunctionView::executeImpl(
|
|
const ASTPtr & /*ast_function*/, ContextPtr context, const std::string & table_name, ColumnsDescription /*cached_columns*/) const
|
|
{
|
|
auto columns = getActualTableStructure(context);
|
|
auto res = StorageView::create(StorageID(getDatabaseName(), table_name), create, columns, "");
|
|
res->startup();
|
|
return res;
|
|
}
|
|
|
|
void registerTableFunctionView(TableFunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<TableFunctionView>();
|
|
}
|
|
|
|
}
|