diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-04-09 20:35:55 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-04-09 20:35:55 +0000 |
commit | f2d70d32ebd6c38d4fe93c1a684f5f29e5e76938 (patch) | |
tree | 5d041018177cdf6e9ca3ef0cc2eafac580a5bb0b /src/include/utils/syscache.h | |
parent | c419c224142eb4bbf6e9a47d2d3626f212fda0fc (diff) | |
download | postgresql-f2d70d32ebd6c38d4fe93c1a684f5f29e5e76938.tar.gz postgresql-f2d70d32ebd6c38d4fe93c1a684f5f29e5e76938.zip |
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.
Diffstat (limited to 'src/include/utils/syscache.h')
-rw-r--r-- | src/include/utils/syscache.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/utils/syscache.h b/src/include/utils/syscache.h index 1d9ddd9acfd..365d9efdb5d 100644 --- a/src/include/utils/syscache.h +++ b/src/include/utils/syscache.h @@ -9,7 +9,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: syscache.h,v 1.42 2002/04/06 06:59:25 tgl Exp $ + * $Id: syscache.h,v 1.43 2002/04/09 20:35:55 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -49,7 +49,7 @@ #define NAMESPACEOID 18 #define OPERNAME 19 #define OPEROID 20 -#define PROCNAME 21 +#define PROCNAMENSP 21 #define PROCOID 22 #define RELNAMENSP 23 #define RELOID 24 |