| 92 | } |
| 93 | |
| 94 | bool 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 | |
| 102 | std::optional<FunctionDocumentation> TableFunctionFactory::tryGetDocumentation(const String & name) const |
| 103 | { |
no test coverage detected