mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
20 lines
429 B
C++
20 lines
429 B
C++
#include <TableFunctions/ITableFunction.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) const
|
|
{
|
|
ProfileEvents::increment(ProfileEvents::TableFunctionExecute);
|
|
return executeImpl(ast_function, context, table_name);
|
|
}
|
|
|
|
}
|