We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1b95a0 commit 4aac8e3Copy full SHA for 4aac8e3
src/func_cache.c
@@ -537,7 +537,6 @@ initialize_func_info()
537
};
538
Oid extension_nsp = ts_extension_schema_oid();
539
Oid experimental_nsp = get_namespace_oid(ts_experimental_schema_name(), false);
540
- Oid pg_nsp = get_namespace_oid("pg_catalog", false);
541
HeapTuple tuple;
542
Relation rel;
543
@@ -551,7 +550,7 @@ initialize_func_info()
551
550
for (size_t i = 0; i < _MAX_CACHE_FUNCTIONS; i++)
552
{
553
FuncInfo *finfo = &funcinfo[i];
554
- Oid namespaceoid = pg_nsp;
+ Oid namespaceoid = PG_CATALOG_NAMESPACE;
555
oidvector *paramtypes = buildoidvector(finfo->arg_types, finfo->nargs);
556
FuncEntry *fentry;
557
bool hash_found;
0 commit comments