2017-08-18 17:06:22 +00:00
|
|
|
#include <TableFunctions/TableFunctionFactory.h>
|
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Interpreters/Context.h>
|
2021-01-22 12:19:06 +00:00
|
|
|
#include <Common/CurrentThread.h>
|
2017-08-18 17:06:22 +00:00
|
|
|
#include <Common/Exception.h>
|
2019-04-03 11:13:22 +00:00
|
|
|
#include <IO/WriteHelpers.h>
|
2020-10-14 12:19:29 +00:00
|
|
|
#include <Parsers/ASTFunction.h>
|
2014-01-28 16:45:10 +00:00
|
|
|
|
2019-07-30 12:15:02 +00:00
|
|
|
|
2014-01-28 16:45:10 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2016-01-11 21:46:36 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
extern const int UNKNOWN_FUNCTION;
|
2017-08-18 17:06:22 +00:00
|
|
|
extern const int LOGICAL_ERROR;
|
2016-01-11 21:46:36 +00:00
|
|
|
}
|
|
|
|
|
2014-01-28 16:45:10 +00:00
|
|
|
|
2020-06-14 07:44:02 +00:00
|
|
|
void TableFunctionFactory::registerFunction(const std::string & name, Value creator, CaseSensitiveness case_sensitiveness)
|
2017-08-18 17:06:22 +00:00
|
|
|
{
|
2019-07-29 13:50:13 +00:00
|
|
|
if (!table_functions.emplace(name, creator).second)
|
2017-08-18 17:06:22 +00:00
|
|
|
throw Exception("TableFunctionFactory: the table function name '" + name + "' is not unique",
|
|
|
|
ErrorCodes::LOGICAL_ERROR);
|
2019-07-29 13:50:13 +00:00
|
|
|
|
|
|
|
if (case_sensitiveness == CaseInsensitive
|
|
|
|
&& !case_insensitive_table_functions.emplace(Poco::toLower(name), creator).second)
|
2019-07-29 16:20:17 +00:00
|
|
|
throw Exception("TableFunctionFactory: the case insensitive table function name '" + name + "' is not unique",
|
2019-07-29 13:50:13 +00:00
|
|
|
ErrorCodes::LOGICAL_ERROR);
|
2017-08-18 17:06:22 +00:00
|
|
|
}
|
|
|
|
|
2014-01-28 16:45:10 +00:00
|
|
|
TableFunctionPtr TableFunctionFactory::get(
|
2020-10-14 12:19:29 +00:00
|
|
|
const ASTPtr & ast_function,
|
2021-04-10 23:33:54 +00:00
|
|
|
ContextPtr context) const
|
2014-01-28 16:45:10 +00:00
|
|
|
{
|
2020-10-14 12:19:29 +00:00
|
|
|
const auto * table_function = ast_function->as<ASTFunction>();
|
|
|
|
auto res = tryGet(table_function->name, context);
|
2019-07-29 13:50:13 +00:00
|
|
|
if (!res)
|
2019-04-03 11:13:22 +00:00
|
|
|
{
|
2020-10-14 12:19:29 +00:00
|
|
|
auto hints = getHints(table_function->name);
|
2019-04-03 11:13:22 +00:00
|
|
|
if (!hints.empty())
|
2020-10-14 12:19:29 +00:00
|
|
|
throw Exception(ErrorCodes::UNKNOWN_FUNCTION, "Unknown table function {}. Maybe you meant: {}", table_function->name , toString(hints));
|
2019-04-03 11:13:22 +00:00
|
|
|
else
|
2020-10-14 12:19:29 +00:00
|
|
|
throw Exception(ErrorCodes::UNKNOWN_FUNCTION, "Unknown table function {}", table_function->name);
|
2019-04-03 11:13:22 +00:00
|
|
|
}
|
2017-08-18 17:06:22 +00:00
|
|
|
|
2020-10-14 12:19:29 +00:00
|
|
|
res->parseArguments(ast_function, context);
|
2019-07-29 13:50:13 +00:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
TableFunctionPtr TableFunctionFactory::tryGet(
|
|
|
|
const std::string & name_param,
|
2021-04-10 23:33:54 +00:00
|
|
|
ContextPtr) const
|
2019-07-29 13:50:13 +00:00
|
|
|
{
|
|
|
|
String name = getAliasToOrName(name_param);
|
2021-01-23 10:18:40 +00:00
|
|
|
TableFunctionPtr res;
|
2019-07-29 13:50:13 +00:00
|
|
|
|
|
|
|
auto it = table_functions.find(name);
|
|
|
|
if (table_functions.end() != it)
|
2021-01-23 10:18:40 +00:00
|
|
|
res = it->second();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
it = case_insensitive_table_functions.find(Poco::toLower(name));
|
|
|
|
if (case_insensitive_table_functions.end() != it)
|
|
|
|
res = it->second();
|
|
|
|
}
|
2019-07-29 13:50:13 +00:00
|
|
|
|
2021-01-23 10:18:40 +00:00
|
|
|
if (!res)
|
|
|
|
return nullptr;
|
2019-07-29 13:50:13 +00:00
|
|
|
|
2021-01-23 10:18:40 +00:00
|
|
|
if (CurrentThread::isInitialized())
|
|
|
|
{
|
2021-04-10 23:33:54 +00:00
|
|
|
auto query_context = CurrentThread::get().getQueryContext();
|
2021-01-23 10:18:40 +00:00
|
|
|
if (query_context && query_context->getSettingsRef().log_queries)
|
|
|
|
query_context->addQueryFactoriesInfo(Context::QueryLogFactories::TableFunction, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
2014-01-28 16:45:10 +00:00
|
|
|
}
|
|
|
|
|
2018-07-24 13:10:34 +00:00
|
|
|
bool TableFunctionFactory::isTableFunctionName(const std::string & name) const
|
|
|
|
{
|
2019-07-29 13:50:13 +00:00
|
|
|
return table_functions.count(name);
|
2018-07-24 13:10:34 +00:00
|
|
|
}
|
|
|
|
|
2019-08-22 03:24:05 +00:00
|
|
|
TableFunctionFactory & TableFunctionFactory::instance()
|
|
|
|
{
|
|
|
|
static TableFunctionFactory ret;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-01-28 16:45:10 +00:00
|
|
|
}
|