| 120 | } |
| 121 | |
| 122 | static 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 | |
| 127 | string Function::CallToString(const string &catalog_name, const string &schema_name, const string &name, |
| 128 | const vector<LogicalType> &arguments, const LogicalType &varargs) { |