MCPcopy Create free account
hub / github.com/duckdb/duckdb / RequiresCatalogAndSchemaNamePrefix

Function RequiresCatalogAndSchemaNamePrefix

src/function/function.cpp:122–125  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

120}
121
122static bool RequiresCatalogAndSchemaNamePrefix(const string &catalog_name, const string &schema_name) {
123 return !catalog_name.empty() && catalog_name != SYSTEM_CATALOG && !schema_name.empty() &&
124 schema_name != DEFAULT_SCHEMA;
125}
126
127string Function::CallToString(const string &catalog_name, const string &schema_name, const string &name,
128 const vector<LogicalType> &arguments, const LogicalType &varargs) {

Callers 1

CallToStringMethod · 0.85

Calls 1

emptyMethod · 0.45

Tested by

no test coverage detected