aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-05-30 14:40:13 +0000
committerBruce Momjian <bruce@momjian.us>2001-05-30 14:40:13 +0000
commitb6ec9d48e27b64a5b12af8ff234a7326b8c4d180 (patch)
tree6ab80e5be5f9f8c9e5709d41155ffc7f9050390c /src
parent3b9c1007700b725d863b950458fe1954eae6e19b (diff)
downloadpostgresql-b6ec9d48e27b64a5b12af8ff234a7326b8c4d180.tar.gz
postgresql-b6ec9d48e27b64a5b12af8ff234a7326b8c4d180.zip
Mark as unused:
> Are these columns in pg_class: > relukeys | relfkeys | relhaspkey > unused or what? Christopher Kings
Diffstat (limited to 'src')
-rw-r--r--src/include/catalog/pg_class.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/catalog/pg_class.h b/src/include/catalog/pg_class.h
index 47cdfc5a23d..0ff37a5093e 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.49 2001/05/14 20:30:21 momjian Exp $
+ * $Id: pg_class.h,v 1.50 2001/05/30 14:40:13 momjian Exp $
*
* NOTES
* the genbki.sh script reads this file and generates .bki
@@ -67,10 +67,10 @@ CATALOG(pg_class) BOOTSTRAP
*/
int2 relchecks; /* # of CHECK constraints for class */
int2 reltriggers; /* # of TRIGGERs */
- int2 relukeys; /* # of Unique keys */
- int2 relfkeys; /* # of FOREIGN KEYs */
- int2 relrefs; /* # of references to this rel (not used!) */
- bool relhaspkey; /* has PRIMARY KEY */
+ int2 relukeys; /* # of Unique keys (not used) */
+ int2 relfkeys; /* # of FOREIGN KEYs (not used) */
+ int2 relrefs; /* # of references to this rel (not used) */
+ bool relhaspkey; /* has PRIMARY KEY (not used) */
bool relhasrules; /* has associated rules */
bool relhassubclass; /* has derived classes */