summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian1998-09-06 04:49:51 +0000
committerBruce Momjian1998-09-06 04:49:51 +0000
commite15807f4103034f42963cef17e39028c1dba58f7 (patch)
treeaf20c0e5cd41f7d66993b9e4c67f0dbba1a68027
parent7d1e32b51c680eb0c6519f9f42cb8332f99e87ef (diff)
BTW, in catalog/pg_type.h:
#define Anum_pg_index_indisunique 8 I think this should be 9. Tatsuo Ishii
-rw-r--r--src/include/catalog/pg_index.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/catalog/pg_index.h b/src/include/catalog/pg_index.h
index 4cf6ad95efc..aba98471743 100644
--- a/src/include/catalog/pg_index.h
+++ b/src/include/catalog/pg_index.h
@@ -7,7 +7,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: pg_index.h,v 1.8 1998/09/01 04:34:58 momjian Exp $
+ * $Id: pg_index.h,v 1.9 1998/09/06 04:49:51 momjian Exp $
*
* NOTES
* the genbki.sh script reads this file and generates .bki
@@ -78,7 +78,7 @@ typedef FormData_pg_index *Form_pg_index;
#define Anum_pg_index_indisclustered 6
#define Anum_pg_index_indislossy 7
#define Anum_pg_index_indhaskeytype 8
-#define Anum_pg_index_indisunique 8
+#define Anum_pg_index_indisunique 9
#define Anum_pg_index_indpred 10
#endif /* PG_INDEX_H */