diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml index 01885a5095b4d1c1f0de162d381270098772d146..27b8314518ab17bb9853da0b62ac2707edd732e5 100644 --- a/doc/src/sgml/catalogs.sgml +++ b/doc/src/sgml/catalogs.sgml @@ -1,6 +1,6 @@ @@ -91,21 +91,11 @@ additional index information - - pg_inheritproc - (not used) - - pg_inherits table inheritance hierarchy - - pg_ipl - (not used) - - pg_language languages for writing functions diff --git a/src/backend/access/transam/transam.c b/src/backend/access/transam/transam.c index 0f1065397040ff7aaf0c332b30ca8dfdf4c0808c..89a35b2d335d518eac11da7037e12d315fbfa5af 100644 --- a/src/backend/access/transam/transam.c +++ b/src/backend/access/transam/transam.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/transam/transam.c,v 1.43 2001/03/22 06:16:10 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/transam/transam.c,v 1.44 2001/05/14 20:30:19 momjian Exp $ * * NOTES * This file contains the high level access-method interface to the @@ -38,7 +38,6 @@ static void TransactionLogUpdate(TransactionId transactionId, */ Relation LogRelation = (Relation) NULL; -Relation VariableRelation = (Relation) NULL; /* ---------------- * global variables holding cached transaction id's and statuses. @@ -283,46 +282,6 @@ TransactionLogUpdate(TransactionId transactionId, /* trans id to update */ static void TransRecover(Relation logRelation) { -#ifdef NOT_USED - - /* - * first get the last recorded transaction in the log. - */ - TransGetLastRecordedTransaction(logRelation, logLastXid, &fail); - if (fail == true) - elog(ERROR, "TransRecover: failed TransGetLastRecordedTransaction"); - - /* - * next get the "last" and "next" variables - */ - VariableRelationGetLastXid(&varLastXid); - VariableRelationGetNextXid(&varNextXid); - - /* - * intregity test (1) - */ - if (TransactionIdIsLessThan(varNextXid, logLastXid)) - elog(ERROR, "TransRecover: varNextXid < logLastXid"); - - /* - * intregity test (2) - */ - - /* - * intregity test (3) - */ - - /* - * here we have a valid " - * - **** RESUME HERE **** - */ - varNextXid = TransactionIdDup(varLastXid); - TransactionIdIncrement(&varNextXid); - - VarPut(var, VAR_PUT_LASTXID, varLastXid); - VarPut(var, VAR_PUT_NEXTXID, varNextXid); -#endif } /* ---------------------------------------------------------------- @@ -386,7 +345,6 @@ InitializeTransactionLog(void) * so they are guaranteed to exist) */ logRelation = heap_openr(LogRelationName, NoLock); - VariableRelation = heap_openr(VariableRelationName, NoLock); /* * XXX TransactionLogUpdate requires that LogRelation is valid so we diff --git a/src/backend/catalog/Makefile b/src/backend/catalog/Makefile index e004eea5ee58e8f46aa259bc394c7fe84285bda7..4c5f023f3540ae3b62da41684a17e3507ad9d698 100644 --- a/src/backend/catalog/Makefile +++ b/src/backend/catalog/Makefile @@ -2,7 +2,7 @@ # # Makefile for catalog # -# $Header: /cvsroot/pgsql/src/backend/catalog/Makefile,v 1.32 2000/10/28 22:14:14 petere Exp $ +# $Header: /cvsroot/pgsql/src/backend/catalog/Makefile,v 1.33 2001/05/14 20:30:19 momjian Exp $ # #------------------------------------------------------------------------- @@ -30,8 +30,7 @@ TEMPLATE1_BKI_SRCS := $(addprefix $(top_srcdir)/src/include/catalog/,\ pg_proc.h pg_type.h pg_attribute.h pg_class.h \ pg_inherits.h pg_index.h pg_statistic.h \ pg_operator.h pg_opclass.h pg_am.h pg_amop.h pg_amproc.h \ - pg_language.h pg_largeobject.h \ - pg_aggregate.h pg_ipl.h pg_inheritproc.h \ + pg_language.h pg_largeobject.h pg_aggregate.h \ pg_rewrite.h pg_listener.h pg_description.h indexing.h \ ) diff --git a/src/backend/catalog/heap.c b/src/backend/catalog/heap.c index ec14a736965b4aa27b6af2596fca1a849c897704..4191047214637fde4b589c5beb4f6172d4cddacc 100644 --- a/src/backend/catalog/heap.c +++ b/src/backend/catalog/heap.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.164 2001/05/09 21:13:35 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.165 2001/05/14 20:30:19 momjian Exp $ * * * INTERFACE ROUTINES @@ -39,7 +39,6 @@ #include "catalog/pg_attrdef.h" #include "catalog/pg_inherits.h" #include "catalog/pg_index.h" -#include "catalog/pg_ipl.h" #include "catalog/pg_proc.h" #include "catalog/pg_relcheck.h" #include "catalog/pg_statistic.h" @@ -258,11 +257,6 @@ heap_create(char *relname, tblNode = InvalidOid; relid = RelOid_pg_database; } - else if (strcmp(VariableRelationName, relname) == 0) - { - tblNode = InvalidOid; - relid = RelOid_pg_variable; - } else if (strcmp(LogRelationName, relname) == 0) { tblNode = InvalidOid; @@ -989,26 +983,6 @@ RelationRemoveInheritance(Relation relation) heap_endscan(scan); heap_close(catalogRelation, RowExclusiveLock); - - /* - * now remove dead IPL tuples - */ - catalogRelation = heap_openr(InheritancePrecidenceListRelationName, - RowExclusiveLock); - - entry.sk_attno = Anum_pg_ipl_iplrelid; - - scan = heap_beginscan(catalogRelation, - false, - SnapshotNow, - 1, - &entry); - - while (HeapTupleIsValid(tuple = heap_getnext(scan, 0))) - simple_heap_delete(catalogRelation, &tuple->t_self); - - heap_endscan(scan); - heap_close(catalogRelation, RowExclusiveLock); } /* -------------------------------- @@ -1858,7 +1832,7 @@ AddRelationRawConstraints(Relation rel, foreach(listptr2, rawConstraints) { Constraint *cdef2 = (Constraint *) lfirst(listptr2); - + if (cdef2 == cdef || cdef2->contype != CONSTR_CHECK || cdef2->raw_expr == NULL || diff --git a/src/backend/commands/creatinh.c b/src/backend/commands/creatinh.c index bb9af256202ffbe8867e60e045dd5260728b1cd4..d196c54c340a90b2704c089cc5ad87b37b9d116c 100644 --- a/src/backend/commands/creatinh.c +++ b/src/backend/commands/creatinh.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/Attic/creatinh.c,v 1.76 2001/04/02 18:30:49 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/Attic/creatinh.c,v 1.77 2001/05/14 20:30:20 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -20,7 +20,6 @@ #include "catalog/indexing.h" #include "catalog/heap.h" #include "catalog/pg_inherits.h" -#include "catalog/pg_ipl.h" #include "catalog/pg_type.h" #include "commands/creatinh.h" #include "miscadmin.h" @@ -786,38 +785,6 @@ again: goto again; } } - - /* - * Catalog IPL information using expanded list. - */ - relation = heap_openr(InheritancePrecidenceListRelationName, RowExclusiveLock); - desc = RelationGetDescr(relation); - - seqNumber = 1; - - foreach(entry, supers) - { - Datum datum[Natts_pg_ipl]; - char nullarr[Natts_pg_ipl]; - - datum[0] = ObjectIdGetDatum(relationId); /* iplrel */ - datum[1] = ObjectIdGetDatum(lfirsti(entry)); - /* iplinherits */ - datum[2] = Int16GetDatum(seqNumber); /* iplseqno */ - - nullarr[0] = ' '; - nullarr[1] = ' '; - nullarr[2] = ' '; - - tuple = heap_formtuple(desc, datum, nullarr); - - heap_insert(relation, tuple); - heap_freetuple(tuple); - - seqNumber += 1; - } - - heap_close(relation, RowExclusiveLock); } /* diff --git a/src/backend/parser/gram.y b/src/backend/parser/gram.y index 6df04f9983facff3a6738b1b402af66afbdb296d..5857f6ee642317d46169fd86cf0a9c502ba05d11 100644 --- a/src/backend/parser/gram.y +++ b/src/backend/parser/gram.y @@ -11,7 +11,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.225 2001/05/09 16:50:44 petere Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.226 2001/05/14 20:30:20 momjian Exp $ * * HISTORY * AUTHOR DATE MAJOR EVENT @@ -5301,8 +5301,7 @@ relation_name: SpecialRuleRelation | ColId { /* disallow refs to variable system tables */ - if (strcmp(LogRelationName, $1) == 0 - || strcmp(VariableRelationName, $1) == 0) + if (strcmp(LogRelationName, $1) == 0) elog(ERROR,"%s cannot be accessed by users",$1); else $$ = $1; diff --git a/src/backend/utils/cache/relcache.c b/src/backend/utils/cache/relcache.c index 352f52e9208a694281f17c9999e2668ef62ba4d8..780760c095ec878ca02a0db5c48c08566afd3ec6 100644 --- a/src/backend/utils/cache/relcache.c +++ b/src/backend/utils/cache/relcache.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/cache/relcache.c,v 1.131 2001/04/02 23:30:04 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/cache/relcache.c,v 1.132 2001/05/14 20:30:20 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -2117,7 +2117,6 @@ RelationCacheInitialize(void) formrdesc(AttributeRelationName, Natts_pg_attribute, Desc_pg_attribute); formrdesc(ProcedureRelationName, Natts_pg_proc, Desc_pg_proc); formrdesc(TypeRelationName, Natts_pg_type, Desc_pg_type); - formrdesc(VariableRelationName, Natts_pg_variable, Desc_pg_variable); formrdesc(LogRelationName, Natts_pg_log, Desc_pg_log); /* diff --git a/src/backend/utils/init/globals.c b/src/backend/utils/init/globals.c index b20d7d0ab660e82be7411c3549b9dfaf1772d791..3efb52fcb9a3360b78a92ba76ac798ca04b7a260 100644 --- a/src/backend/utils/init/globals.c +++ b/src/backend/utils/init/globals.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.56 2001/05/12 01:48:49 petere Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.57 2001/05/14 20:30:21 momjian Exp $ * * NOTES * Globals used all over the place should be declared here and not @@ -115,6 +115,5 @@ char *SharedSystemRelationNames[] = { GroupSysidIndex, LogRelationName, ShadowRelationName, - VariableRelationName, 0 }; diff --git a/src/include/access/transam.h b/src/include/access/transam.h index 0da7fe565002a0b4237fcc3b37e3afd5903f855e..b18f26b951ef2b148f7171ff4cc498ea6f1fdc3f 100644 --- a/src/include/access/transam.h +++ b/src/include/access/transam.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: transam.h,v 1.32 2001/03/22 04:00:31 momjian Exp $ + * $Id: transam.h,v 1.33 2001/05/14 20:30:21 momjian Exp $ * * NOTES * Transaction System Version 101 now support proper oid @@ -91,38 +91,6 @@ typedef struct LogRelationContentsData typedef LogRelationContentsData *LogRelationContents; -/* ---------------- - * VariableRelationContents structure - * - * The variable relation is a special "relation" which - * is used to store various system "variables" persistantly. - * Unlike other relations in the system, this relation - * is updated in place whenever the variables change. - * - * The first 4 bytes of this relation store the version - * number of the transaction system. - * - * Currently, the relation has only one page and the next - * available xid, the last committed xid and the next - * available oid are stored there. - * - * XXX As of 7.1, pg_variable isn't used anymore; this is dead code. - * ---------------- - */ -#ifdef NOT_USED -typedef struct VariableRelationContentsData -{ - XLogRecPtr LSN; - int TransSystemVersion; - TransactionId nextXidData; - TransactionId lastXidData; /* unused */ - Oid nextOid; -} VariableRelationContentsData; - -typedef VariableRelationContentsData *VariableRelationContents; - -#endif /* NOT_USED */ - /* * VariableCache is placed in shmem and used by * backends to get next available XID & OID. @@ -161,7 +129,6 @@ extern void TransBlockNumberSetXidStatus(Relation relation, bool *failP); /* in transam/varsup.c */ -extern void VariableRelationPutNextXid(TransactionId xid); extern void GetNewTransactionId(TransactionId *xid); extern void ReadNewTransactionId(TransactionId *xid); extern void GetNewObjectId(Oid *oid_return); @@ -174,7 +141,6 @@ extern void CheckMaxObjectId(Oid assigned_oid); /* in transam.c */ extern Relation LogRelation; -extern Relation VariableRelation; extern TransactionId cachedTestXid; extern XidStatus cachedTestXidStatus; diff --git a/src/include/catalog/catname.h b/src/include/catalog/catname.h index 29f58a76971e2b6a7397eb493ca0ead7c83fcdcd..2f2f2c90f4410b1aeaea256cb0542eb2936753b7 100644 --- a/src/include/catalog/catname.h +++ b/src/include/catalog/catname.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: catname.h,v 1.18 2001/01/24 19:43:20 momjian Exp $ + * $Id: catname.h,v 1.19 2001/05/14 20:30:21 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -25,9 +25,7 @@ #define DescriptionRelationName "pg_description" #define GroupRelationName "pg_group" #define IndexRelationName "pg_index" -#define InheritProcedureRelationName "pg_inheritproc" #define InheritsRelationName "pg_inherits" -#define InheritancePrecidenceListRelationName "pg_ipl" #define LanguageRelationName "pg_language" #define LargeObjectRelationName "pg_largeobject" #define ListenerRelationName "pg_listener" @@ -40,7 +38,6 @@ #define ShadowRelationName "pg_shadow" #define StatisticRelationName "pg_statistic" #define TypeRelationName "pg_type" -#define VariableRelationName "pg_variable" #define VersionRelationName "pg_version" #define AttrDefaultRelationName "pg_attrdef" #define RelCheckRelationName "pg_relcheck" diff --git a/src/include/catalog/catversion.h b/src/include/catalog/catversion.h index e0ecbb13d92bbf96d6018c9842316409eebae1ad..ab066997fd69ed6a17ad210ec995d2223b0752f1 100644 --- a/src/include/catalog/catversion.h +++ b/src/include/catalog/catversion.h @@ -37,7 +37,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: catversion.h,v 1.72 2001/05/10 22:39:24 momjian Exp $ + * $Id: catversion.h,v 1.73 2001/05/14 20:30:21 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -53,6 +53,6 @@ */ /* yyyymmddN */ -#define CATALOG_VERSION_NO 200105101 +#define CATALOG_VERSION_NO 2001051401 #endif diff --git a/src/include/catalog/pg_class.h b/src/include/catalog/pg_class.h index 86de88cc9b662fe5c65f43301e2a28a247bf69ee..47cdfc5a23d27cc70504b0f48a0d91071ab02121 100644 --- a/src/include/catalog/pg_class.h +++ b/src/include/catalog/pg_class.h @@ -8,7 +8,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pg_class.h,v 1.48 2001/05/07 00:43:25 tgl Exp $ + * $Id: pg_class.h,v 1.49 2001/05/14 20:30:21 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki @@ -146,8 +146,6 @@ DATA(insert OID = 1261 ( pg_group 87 PGUID 0 1261 0 0 0 0 f t r 3 0 0 0 0 0 DESCR(""); DATA(insert OID = 1262 ( pg_database 88 PGUID 0 1262 0 0 0 0 f t r 7 0 0 0 0 0 f f f _null_ )); DESCR(""); -DATA(insert OID = 1264 ( pg_variable 90 PGUID 0 1264 0 0 0 0 f t s 1 0 0 0 0 0 f f f _null_ )); -DESCR(""); DATA(insert OID = 1269 ( pg_log 99 PGUID 0 1269 0 0 0 0 f t s 1 0 0 0 0 0 f f f _null_ )); DESCR(""); DATA(insert OID = 376 ( pg_xactlock 0 PGUID 0 0 0 0 0 0 f t s 1 0 0 0 0 0 f f f _null_ )); @@ -166,7 +164,6 @@ DESCR(""); #define RelOid_pg_shadow 1260 #define RelOid_pg_group 1261 #define RelOid_pg_database 1262 -#define RelOid_pg_variable 1264 #define RelOid_pg_log 1269 #define RelOid_pg_attrdef 1215 #define RelOid_pg_relcheck 1216 diff --git a/src/include/catalog/pg_inheritproc.h b/src/include/catalog/pg_inheritproc.h deleted file mode 100644 index 6d250d53a8d4545428620cbf37750abaf3477618..0000000000000000000000000000000000000000 --- a/src/include/catalog/pg_inheritproc.h +++ /dev/null @@ -1,60 +0,0 @@ -/*------------------------------------------------------------------------- - * - * pg_inheritproc.h - * definition of the system "inheritproc" relation (pg_inheritproc) - * along with the relation's initial contents. - * - * - * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group - * Portions Copyright (c) 1994, Regents of the University of California - * - * $Id: pg_inheritproc.h,v 1.10 2001/01/24 19:43:21 momjian Exp $ - * - * NOTES - * the genbki.sh script reads this file and generates .bki - * information from the DATA() statements. - * - *------------------------------------------------------------------------- - */ -#ifndef PG_INHERITPROC_H -#define PG_INHERITPROC_H - -/* ---------------- - * postgres.h contains the system type definintions and the - * CATALOG(), BOOTSTRAP and DATA() sugar words so this file - * can be read by both genbki.sh and the C compiler. - * ---------------- - */ - -/* ---------------- - * pg_inheritproc definition. cpp turns this into - * typedef struct FormData_pg_inheritproc - * ---------------- - */ -CATALOG(pg_inheritproc) -{ - NameData inhproname; - Oid inhargrelid; - Oid inhdefrelid; - Oid inhproc; -} FormData_pg_inheritproc; - -/* ---------------- - * Form_pg_inheritproc corresponds to a pointer to a tuple with - * the format of pg_inheritproc relation. - * ---------------- - */ -typedef FormData_pg_inheritproc *Form_pg_inheritproc; - -/* ---------------- - * compiler constants for pg_inheritproc - * ---------------- - */ -#define Natts_pg_inheritproc 4 -#define Anum_pg_inheritproc_inhproname 1 -#define Anum_pg_inheritproc_inhargrelid 2 -#define Anum_pg_inheritproc_inhdefrelid 3 -#define Anum_pg_inheritproc_inhproc 4 - - -#endif /* PG_INHERITPROC_H */ diff --git a/src/include/catalog/pg_ipl.h b/src/include/catalog/pg_ipl.h deleted file mode 100644 index eb4b78c8a516d1acd3a8c7677e19532efe490d95..0000000000000000000000000000000000000000 --- a/src/include/catalog/pg_ipl.h +++ /dev/null @@ -1,58 +0,0 @@ -/*------------------------------------------------------------------------- - * - * pg_ipl.h - * definition of the system "ipl" relation (pg_ipl) - * along with the relation's initial contents. - * - * - * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group - * Portions Copyright (c) 1994, Regents of the University of California - * - * $Id: pg_ipl.h,v 1.9 2001/01/24 19:43:21 momjian Exp $ - * - * NOTES - * the genbki.sh script reads this file and generates .bki - * information from the DATA() statements. - * - *------------------------------------------------------------------------- - */ -#ifndef PG_IPL_H -#define PG_IPL_H - -/* ---------------- - * postgres.h contains the system type definintions and the - * CATALOG(), BOOTSTRAP and DATA() sugar words so this file - * can be read by both genbki.sh and the C compiler. - * ---------------- - */ - -/* ---------------- - * pg_ipl definition. cpp turns this into - * typedef struct FormData_pg_ipl - * ---------------- - */ -CATALOG(pg_ipl) -{ - Oid iplrelid; - Oid iplipl; - int4 iplseqno; -} FormData_pg_ipl; - -/* ---------------- - * Form_pg_ipl corresponds to a pointer to a tuple with - * the format of pg_ipl relation. - * ---------------- - */ -typedef FormData_pg_ipl *Form_pg_ipl; - -/* ---------------- - * compiler constants for pg_ipl - * ---------------- - */ -#define Natts_pg_ipl 3 -#define Anum_pg_ipl_iplrelid 1 -#define Anum_pg_ipl_iplipl 2 -#define Anum_pg_ipl_iplseqno 3 - - -#endif /* PG_IPL_H */ diff --git a/src/include/catalog/pg_type.h b/src/include/catalog/pg_type.h index bca0bd1446ee23e0651ecaa9613fb3c6fbf7b48a..1cb9d2a57026ab64918c16a3f0965540989ccb83 100644 --- a/src/include/catalog/pg_type.h +++ b/src/include/catalog/pg_type.h @@ -8,7 +8,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pg_type.h,v 1.104 2001/05/03 16:18:02 tgl Exp $ + * $Id: pg_type.h,v 1.105 2001/05/14 20:30:21 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki @@ -239,7 +239,6 @@ DATA(insert OID = 83 ( pg_class PGUID 4 4 t c t \054 1259 0 int4in int4out int4 DATA(insert OID = 86 ( pg_shadow PGUID 4 4 t c t \054 1260 0 int4in int4out int4in int4out i p _null_)); DATA(insert OID = 87 ( pg_group PGUID 4 4 t c t \054 1261 0 int4in int4out int4in int4out i p _null_)); DATA(insert OID = 88 ( pg_database PGUID 4 4 t c t \054 1262 0 int4in int4out int4in int4out i p _null_)); -DATA(insert OID = 90 ( pg_variable PGUID 4 4 t c t \054 1264 0 int4in int4out int4in int4out i p _null_)); DATA(insert OID = 99 ( pg_log PGUID 4 4 t c t \054 1269 0 int4in int4out int4in int4out i p _null_)); /* OIDS 100 - 199 */ diff --git a/src/tools/pgindent/pgindent b/src/tools/pgindent/pgindent index d47b33e9427723672e08f568d48ffa172a97e16e..74f1b310ed7e8f2eeccc68b56b8a664250b3f46c 100755 --- a/src/tools/pgindent/pgindent +++ b/src/tools/pgindent/pgindent @@ -267,7 +267,6 @@ do -TFormData_pg_group \ -TFormData_pg_index \ -TFormData_pg_inherits \ --TFormData_pg_ipl \ -TFormData_pg_language \ -TFormData_pg_largeobject \ -TFormData_pg_listener \ @@ -295,7 +294,6 @@ do -TForm_pg_group \ -TForm_pg_index \ -TForm_pg_inherits \ --TForm_pg_ipl \ -TForm_pg_language \ -TForm_pg_largeobject \ -TForm_pg_log \