1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
#include <TableFunctions/TableFunctionFactory.h>
#include <Interpreters/Context.h>
#include <Common/CurrentThread.h>
#include <Common/Exception.h>
#include <Common/KnownObjectNames.h>
#include <IO/WriteHelpers.h>
#include <Parsers/ASTFunction.h>
namespace DB
{
namespace ErrorCodes
{
extern const int UNKNOWN_FUNCTION;
extern const int LOGICAL_ERROR;
}
void TableFunctionFactory::registerFunction(
const std::string & name, Value value, CaseSensitiveness case_sensitiveness)
{
if (!table_functions.emplace(name, value).second)
throw Exception(ErrorCodes::LOGICAL_ERROR, "TableFunctionFactory: the table function name '{}' is not unique", name);
if (case_sensitiveness == CaseInsensitive
&& !case_insensitive_table_functions.emplace(Poco::toLower(name), value).second)
throw Exception(ErrorCodes::LOGICAL_ERROR, "TableFunctionFactory: "
"the case insensitive table function name '{}' is not unique", name);
KnownTableFunctionNames::instance().add(name, (case_sensitiveness == CaseInsensitive));
}
TableFunctionPtr TableFunctionFactory::get(
const ASTPtr & ast_function,
ContextPtr context) const
{
const auto * table_function = ast_function->as<ASTFunction>();
auto res = tryGet(table_function->name, context);
if (!res)
{
auto hints = getHints(table_function->name);
if (!hints.empty())
throw Exception(ErrorCodes::UNKNOWN_FUNCTION, "Unknown table function {}. Maybe you meant: {}", table_function->name, toString(hints));
else
throw Exception(ErrorCodes::UNKNOWN_FUNCTION, "Unknown table function {}", table_function->name);
}
res->parseArguments(ast_function, context);
return res;
}
TableFunctionPtr TableFunctionFactory::tryGet(
const std::string & name_param,
ContextPtr) const
{
String name = getAliasToOrName(name_param);
TableFunctionPtr res;
auto it = table_functions.find(name);
if (table_functions.end() != it)
{
res = it->second.creator();
}
else
{
it = case_insensitive_table_functions.find(Poco::toLower(name));
if (case_insensitive_table_functions.end() != it)
res = it->second.creator();
}
if (!res)
return nullptr;
if (CurrentThread::isInitialized())
{
auto query_context = CurrentThread::get().getQueryContext();
if (query_context && query_context->getSettingsRef().log_queries)
query_context->addQueryFactoriesInfo(Context::QueryLogFactories::TableFunction, name);
}
return res;
}
bool TableFunctionFactory::isTableFunctionName(const std::string & name) const
{
return table_functions.contains(name);
}
std::optional<TableFunctionProperties> TableFunctionFactory::tryGetProperties(const String & name) const
{
return tryGetPropertiesImpl(name);
}
std::optional<TableFunctionProperties> TableFunctionFactory::tryGetPropertiesImpl(const String & name_param) const
{
String name = getAliasToOrName(name_param);
Value found;
/// Find by exact match.
if (auto it = table_functions.find(name); it != table_functions.end())
{
found = it->second;
}
if (auto jt = case_insensitive_table_functions.find(Poco::toLower(name)); jt != case_insensitive_table_functions.end())
found = jt->second;
if (found.creator)
return found.properties;
return {};
}
TableFunctionFactory & TableFunctionFactory::instance()
{
static TableFunctionFactory ret;
return ret;
}
}
|