2018-03-02 05:03:28 +00:00
|
|
|
#include <TableFunctions/ITableFunction.h>
|
2020-04-06 05:19:40 +00:00
|
|
|
#include <Interpreters/Context.h>
|
|
|
|
#include <Storages/StorageFactory.h>
|
|
|
|
#include <Access/AccessFlags.h>
|
2018-03-02 05:03:28 +00:00
|
|
|
#include <Common/ProfileEvents.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace ProfileEvents
|
|
|
|
{
|
|
|
|
extern const Event TableFunctionExecute;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2019-07-18 18:29:49 +00:00
|
|
|
StoragePtr ITableFunction::execute(const ASTPtr & ast_function, const Context & context, const std::string & table_name) const
|
2018-03-02 05:03:28 +00:00
|
|
|
{
|
|
|
|
ProfileEvents::increment(ProfileEvents::TableFunctionExecute);
|
2020-04-06 05:19:40 +00:00
|
|
|
context.checkAccess(AccessType::CREATE_TEMPORARY_TABLE | StorageFactory::instance().getSourceAccessType(getStorageTypeName()));
|
2019-07-18 18:29:49 +00:00
|
|
|
return executeImpl(ast_function, context, table_name);
|
2018-03-02 05:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|