MCPcopy Create free account
hub / github.com/ClickHouse/ClickHouse / isTableFunctionName

Method isTableFunctionName

src/TableFunctions/TableFunctionFactory.cpp:94–100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

92}
93
94bool TableFunctionFactory::isTableFunctionName(const std::string & name) const
95{
96 String canonical_name = getAliasToOrName(name);
97 if (table_functions.contains(canonical_name))
98 return true;
99 return case_insensitive_table_functions.contains(Poco::toLower(canonical_name));
100}
101
102std::optional<FunctionDocumentation> TableFunctionFactory::tryGetDocumentation(const String & name) const
103{

Callers 8

resolveTableFunctionMethod · 0.80
parseArgumentsMethod · 0.80
executeImplMethod · 0.80
obfuscateQuery.cppFile · 0.80

Calls 2

toLowerFunction · 0.50
containsMethod · 0.45

Tested by

no test coverage detected