Make the indexes on pg_group be shared system relations.

This commit is contained in:
Tom Lane 2000-05-05 03:09:43 +00:00
parent 3a69c316cc
commit 3bd03b3803

View File

@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * 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 * NOTES
* Globals used all over the place should be declared here and not * Globals used all over the place should be declared here and not
@ -25,6 +25,7 @@
#include "postgres.h" #include "postgres.h"
#include "catalog/catname.h" #include "catalog/catname.h"
#include "catalog/indexing.h"
#include "libpq/pqcomm.h" #include "libpq/pqcomm.h"
#include "miscadmin.h" #include "miscadmin.h"
#include "storage/backendid.h" #include "storage/backendid.h"
@ -115,6 +116,8 @@ char Ps_status_buffer[1024];
char *SharedSystemRelationNames[] = { char *SharedSystemRelationNames[] = {
DatabaseRelationName, DatabaseRelationName,
GroupRelationName, GroupRelationName,
GroupNameIndex,
GroupSysidIndex,
LogRelationName, LogRelationName,
ShadowRelationName, ShadowRelationName,
VariableRelationName, VariableRelationName,