Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 3bd03b3

Browse files
committed
Make the indexes on pg_group be shared system relations.
1 parent 3a69c31 commit 3bd03b3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/backend/utils/init/globals.c

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.42 2000/04/12 17:16:02 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.43 2000/05/05 03:09:43 tgl Exp $
1212
*
1313
* NOTES
1414
* Globals used all over the place should be declared here and not
@@ -25,6 +25,7 @@
2525
#include "postgres.h"
2626

2727
#include "catalog/catname.h"
28+
#include "catalog/indexing.h"
2829
#include "libpq/pqcomm.h"
2930
#include "miscadmin.h"
3031
#include "storage/backendid.h"
@@ -115,6 +116,8 @@ char Ps_status_buffer[1024];
115116
char *SharedSystemRelationNames[] = {
116117
DatabaseRelationName,
117118
GroupRelationName,
119+
GroupNameIndex,
120+
GroupSysidIndex,
118121
LogRelationName,
119122
ShadowRelationName,
120123
VariableRelationName,

0 commit comments

Comments
 (0)