diff options
| author | Bruce Momjian | 2001-05-15 03:49:35 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2001-05-15 03:49:35 +0000 |
| commit | ed6998d0b3c0a6562217e5e9659752c8e7977295 (patch) | |
| tree | 6ad7bdd8bd970561fcdf116bd0dace2ac266ff73 /src/include | |
| parent | f756acf8a8972ffe84cc711b9963b9cb003032f1 (diff) | |
Re-add pg_index.indhaskeytype.
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/catalog/catversion.h | 4 | ||||
| -rw-r--r-- | src/include/catalog/pg_index.h | 13 |
2 files changed, 9 insertions, 8 deletions
diff --git a/src/include/catalog/catversion.h b/src/include/catalog/catversion.h index 2f58b59a8b9..44ddb7611a5 100644 --- a/src/include/catalog/catversion.h +++ b/src/include/catalog/catversion.h @@ -37,7 +37,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: catversion.h,v 1.77 2001/05/15 01:12:59 momjian Exp $ + * $Id: catversion.h,v 1.78 2001/05/15 03:49:35 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -53,6 +53,6 @@ */ /* yyyymmddN */ -#define CATALOG_VERSION_NO 200105144 +#define CATALOG_VERSION_NO 200105145 #endif diff --git a/src/include/catalog/pg_index.h b/src/include/catalog/pg_index.h index d4c4fbc08a0..3877f917833 100644 --- a/src/include/catalog/pg_index.h +++ b/src/include/catalog/pg_index.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_index.h,v 1.18 2001/05/15 01:12:59 momjian Exp $ + * $Id: pg_index.h,v 1.19 2001/05/15 03:49:35 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki @@ -73,7 +73,7 @@ typedef FormData_pg_index *Form_pg_index; * compiler constants for pg_index * ---------------- */ -#define Natts_pg_index 11 +#define Natts_pg_index 12 #define Anum_pg_index_indexrelid 1 #define Anum_pg_index_indrelid 2 #define Anum_pg_index_indproc 3 @@ -81,9 +81,10 @@ typedef FormData_pg_index *Form_pg_index; #define Anum_pg_index_indclass 5 #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 +#define Anum_pg_index_indhaskeytype 8 +#define Anum_pg_index_indisunique 9 +#define Anum_pg_index_indisprimary 10 +#define Anum_pg_index_indreference 11 +#define Anum_pg_index_indpred 12 #endif /* PG_INDEX_H */ |
