Make the indexes on pg_group be shared system relations.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 5 May 2000 03:09:43 +0000 (03:09 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 5 May 2000 03:09:43 +0000 (03:09 +0000)
src/backend/utils/init/globals.c

index 8c4642d1ee2da9db2506e78fe390dee3eade0430..1b0ecdc33aefc54ca1cb294db4172d82f63315d0 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.42 2000/04/12 17:16:02 momjian Exp $
+ *   $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.43 2000/05/05 03:09:43 tgl Exp $
  *
  * NOTES
  *   Globals used all over the place should be declared here and not
@@ -25,6 +25,7 @@
 #include "postgres.h"
 
 #include "catalog/catname.h"
+#include "catalog/indexing.h"
 #include "libpq/pqcomm.h"
 #include "miscadmin.h"
 #include "storage/backendid.h"
@@ -115,6 +116,8 @@ char        Ps_status_buffer[1024];
 char      *SharedSystemRelationNames[] = {
    DatabaseRelationName,
    GroupRelationName,
+   GroupNameIndex,
+   GroupSysidIndex,
    LogRelationName,
    ShadowRelationName,
    VariableRelationName,