*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.147 2001/05/14 21:53:16 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.148 2001/05/15 01:12:58 momjian Exp $
*
*
* INTERFACE ROUTINES
indexForm->indexrelid = indexoid;
indexForm->indrelid = heapoid;
indexForm->indproc = indexInfo->ii_FuncOid;
+ indexForm->indisclustered = false; /* not used */
indexForm->indislossy = islossy;
indexForm->indisunique = indexInfo->ii_Unique;
indexForm->indisprimary = primary;
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: catversion.h,v 1.76 2001/05/15 00:00:15 tgl Exp $
+ * $Id: catversion.h,v 1.77 2001/05/15 01:12:59 momjian Exp $
*
*-------------------------------------------------------------------------
*/
*/
/* yyyymmddN */
-#define CATALOG_VERSION_NO 200105143
+#define CATALOG_VERSION_NO 200105144
#endif
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: pg_index.h,v 1.17 2001/05/14 21:53:16 momjian Exp $
+ * $Id: pg_index.h,v 1.18 2001/05/15 01:12:59 momjian Exp $
*
* NOTES
* the genbki.sh script reads this file and generates .bki
* index */
int2vector indkey;
oidvector indclass;
+ bool indisclustered; /* this is unused, but is referenced by
+ * the ODBC driver. Remove it someday.
+ * bjm 2001-05-14
+ */
bool indislossy; /* do we fetch false tuples (lossy
* compression)? */
bool indhaskeytype; /* does key type != attribute type? */
* compiler constants for pg_index
* ----------------
*/
-#define Natts_pg_index 10
+#define Natts_pg_index 11
#define Anum_pg_index_indexrelid 1
#define Anum_pg_index_indrelid 2
#define Anum_pg_index_indproc 3
#define Anum_pg_index_indkey 4
#define Anum_pg_index_indclass 5
-#define Anum_pg_index_indislossy 6
-#define Anum_pg_index_indisunique 7
-#define Anum_pg_index_indisprimary 8
-#define Anum_pg_index_indreference 9
-#define Anum_pg_index_indpred 10
+#define Anum_pg_index_indisclustered 6
+#define Anum_pg_index_indislossy 7
+#define Anum_pg_index_indisunique 8
+#define Anum_pg_index_indisprimary 9
+#define Anum_pg_index_indreference 10
+#define Anum_pg_index_indpred 11
#endif /* PG_INDEX_H */