From f2d70d32ebd6c38d4fe93c1a684f5f29e5e76938 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 9 Apr 2002 20:35:55 +0000 Subject: Functions live in namespaces. Qualified function names work, eg SELECT schema1.func2(...). Aggregate names can be qualified at the syntactic level, but the qualification is ignored for the moment. --- src/backend/utils/cache/syscache.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/backend/utils/cache/syscache.c') diff --git a/src/backend/utils/cache/syscache.c b/src/backend/utils/cache/syscache.c index 7e6a95a324e..36535bd7fa9 100644 --- a/src/backend/utils/cache/syscache.c +++ b/src/backend/utils/cache/syscache.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.74 2002/04/06 06:59:23 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.75 2002/04/09 20:35:54 tgl Exp $ * * NOTES * These routines allow the parser/planner/executor to perform @@ -303,15 +303,15 @@ static const struct cachedesc cacheinfo[] = { 0, 0 }}, - {ProcedureRelationName, /* PROCNAME */ - ProcedureNameNspIndex, /* XXX very temporary */ + {ProcedureRelationName, /* PROCNAMENSP */ + ProcedureNameNspIndex, 0, - 3, + 4, { Anum_pg_proc_proname, Anum_pg_proc_pronargs, Anum_pg_proc_proargtypes, - 0 + Anum_pg_proc_pronamespace }}, {ProcedureRelationName, /* PROCOID */ ProcedureOidIndex, -- cgit v1.2.3