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

Commit b6ec9d4

Browse files
committed
Mark as unused:
> Are these columns in pg_class: > relukeys | relfkeys | relhaspkey > unused or what? Christopher Kings
1 parent 3b9c100 commit b6ec9d4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/include/catalog/pg_class.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
99
* Portions Copyright (c) 1994, Regents of the University of California
1010
*
11-
* $Id: pg_class.h,v 1.49 2001/05/14 20:30:21 momjian Exp $
11+
* $Id: pg_class.h,v 1.50 2001/05/30 14:40:13 momjian Exp $
1212
*
1313
* NOTES
1414
* the genbki.sh script reads this file and generates .bki
@@ -67,10 +67,10 @@ CATALOG(pg_class) BOOTSTRAP
6767
*/
6868
int2 relchecks; /* # of CHECK constraints for class */
6969
int2 reltriggers; /* # of TRIGGERs */
70-
int2 relukeys; /* # of Unique keys */
71-
int2 relfkeys; /* # of FOREIGN KEYs */
72-
int2 relrefs; /* # of references to this rel (not used!) */
73-
bool relhaspkey; /* has PRIMARY KEY */
70+
int2 relukeys; /* # of Unique keys (not used) */
71+
int2 relfkeys; /* # of FOREIGN KEYs (not used) */
72+
int2 relrefs; /* # of references to this rel (not used) */
73+
bool relhaspkey; /* has PRIMARY KEY (not used) */
7474
bool relhasrules; /* has associated rules */
7575
bool relhassubclass; /* has derived classes */
7676

0 commit comments

Comments
 (0)