mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
38 lines
1.4 KiB
C++
38 lines
1.4 KiB
C++
#include <TableFunctions/ITableFunction.h>
|
|
#include <Interpreters/Context.h>
|
|
#include <Storages/StorageFactory.h>
|
|
#include <Storages/StorageTableFunction.h>
|
|
#include <Access/AccessFlags.h>
|
|
#include <Common/ProfileEvents.h>
|
|
|
|
|
|
namespace ProfileEvents
|
|
{
|
|
extern const Event TableFunctionExecute;
|
|
}
|
|
|
|
namespace DB
|
|
{
|
|
|
|
StoragePtr ITableFunction::execute(const ASTPtr & ast_function, const Context & context, const std::string & table_name,
|
|
ColumnsDescription cached_columns) const
|
|
{
|
|
ProfileEvents::increment(ProfileEvents::TableFunctionExecute);
|
|
context.checkAccess(AccessType::CREATE_TEMPORARY_TABLE | StorageFactory::instance().getSourceAccessType(getStorageTypeName()));
|
|
|
|
bool no_conversion_required = hasStaticStructure() && cached_columns == getActualTableStructure(context);
|
|
if (cached_columns.empty() || no_conversion_required)
|
|
return executeImpl(ast_function, context, table_name, std::move(cached_columns));
|
|
|
|
auto get_storage = [=, tf = shared_from_this()]() -> StoragePtr
|
|
{
|
|
return tf->executeImpl(ast_function, context, table_name, cached_columns);
|
|
};
|
|
|
|
/// It will request actual table structure and create underlying storage lazily
|
|
return std::make_shared<StorageTableFunctionProxy>(StorageID(getDatabaseName(), table_name), std::move(get_storage),
|
|
std::move(cached_columns), needStructureConversion());
|
|
}
|
|
|
|
}
|