|
8 | 8 | * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group |
9 | 9 | * Portions Copyright (c) 1994, Regents of the University of California |
10 | 10 | * |
11 | | - * $Id: pg_index.h,v 1.19 2001/05/15 03:49:35 momjian Exp $ |
| 11 | + * $Id: pg_index.h,v 1.20 2001/05/17 00:29:52 momjian Exp $ |
12 | 12 | * |
13 | 13 | * NOTES |
14 | 14 | * the genbki.sh script reads this file and generates .bki |
@@ -48,13 +48,10 @@ CATALOG(pg_index) |
48 | 48 | * index */ |
49 | 49 | int2vectorindkey; |
50 | 50 | oidvectorindclass; |
51 | | -boolindisclustered;/* this is unused, but is referenced by |
52 | | - * the ODBC driver. Remove it someday. |
53 | | - * bjm 2001-05-14 |
54 | | - */ |
| 51 | +boolindisclustered;/* unused */ |
55 | 52 | boolindislossy;/* do we fetch false tuples (lossy |
56 | 53 | * compression)? */ |
57 | | -boolindhaskeytype;/*does key type != attribute type? */ |
| 54 | +boolindhaskeytype;/*not used, originally added by GIST */ |
58 | 55 | boolindisunique;/* is this a unique index? */ |
59 | 56 | boolindisprimary;/* is this index for primary key */ |
60 | 57 | Oidindreference;/* oid of index of referenced relation (ie |
|