summaryrefslogtreecommitdiff
path: root/src/backend/catalog/pg_index.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/catalog/pg_index.h')
-rw-r--r--src/backend/catalog/pg_index.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/backend/catalog/pg_index.h b/src/backend/catalog/pg_index.h
index da75b025bc..e99b5682f0 100644
--- a/src/backend/catalog/pg_index.h
+++ b/src/backend/catalog/pg_index.h
@@ -7,7 +7,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: pg_index.h,v 1.1.1.1 1996/07/09 06:21:17 scrappy Exp $
+ * $Id: pg_index.h,v 1.2 1996/08/26 06:29:43 scrappy Exp $
*
* NOTES
* the genbki.sh script reads this file and generates .bki
@@ -42,6 +42,8 @@ CATALOG(pg_index) {
bool indisclustered;
bool indisarchived;
text indpred; /* query plan for partial index predicate */
+ bool indislossy; /* do we fetch false tuples (lossy compression)? */
+ bool indhaskeytype; /* does key type != attribute type? */
} FormData_pg_index;
#define INDEX_MAX_KEYS 8 /* maximum number of keys in an index definition */
@@ -57,7 +59,7 @@ typedef FormData_pg_index *IndexTupleForm;
* compiler constants for pg_index
* ----------------
*/
-#define Natts_pg_index 8
+#define Natts_pg_index 10
#define Anum_pg_index_indexrelid 1
#define Anum_pg_index_indrelid 2
#define Anum_pg_index_indproc 3
@@ -66,6 +68,8 @@ typedef FormData_pg_index *IndexTupleForm;
#define Anum_pg_index_indisclustered 6
#define Anum_pg_index_indisarchived 7
#define Anum_pg_index_indpred 8
+#define Anum_pg_index_indislossy 9
+#define Anum_pg_index_indhaskeytype 10
#endif /* PG_INDEX_H */