summaryrefslogtreecommitdiff
path: root/src/bin/pg_dump/pg_dump.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2002-05-28 22:26:57 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2002-05-28 22:26:57 +0000
commit36a1e732a6b8dcaae06235601797c90a0cc4481c (patch)
tree1e25b708ff9a2d72e4b44b7a90091dc3cfe21f21 /src/bin/pg_dump/pg_dump.h
parent5a8ab29adf36afd7bcd61cd57f9e3ba4336e7947 (diff)
downloadpostgresql-36a1e732a6b8dcaae06235601797c90a0cc4481c.tar.gz
Rework pg_dump namespace search criteria so that dumping of user objects
having names conflicting with system objects will work --- the search path is now user-schema, pg_catalog rather than implicitly the other way around. Note this requires being careful to explicitly qualify references to system names whenever pg_catalog is not first in the search path. Also, add support for dumping ACLs of schemas.
Diffstat (limited to 'src/bin/pg_dump/pg_dump.h')
-rw-r--r--src/bin/pg_dump/pg_dump.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bin/pg_dump/pg_dump.h b/src/bin/pg_dump/pg_dump.h
index c78439a0c5..d2600ce45e 100644
--- a/src/bin/pg_dump/pg_dump.h
+++ b/src/bin/pg_dump/pg_dump.h
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: pg_dump.h,v 1.86 2002/05/19 10:08:25 petere Exp $
+ * $Id: pg_dump.h,v 1.87 2002/05/28 22:26:57 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -70,10 +70,11 @@ typedef struct _aggInfo
{
char *oid;
char *aggname;
- char *aggbasetype;
+ char *aggbasetype; /* OID */
NamespaceInfo *aggnamespace; /* link to containing namespace */
char *usename;
char *aggacl;
+ char *fmtbasetype; /* formatted type name */
} AggInfo;
typedef struct _oprInfo