summaryrefslogtreecommitdiff
path: root/src/include/catalog/pg_index.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2000-01-10 16:13:23 +0000
committerBruce Momjian <bruce@momjian.us>2000-01-10 16:13:23 +0000
commit6456b17bc1c60ec8d8f4ca08ddebaefad519afc7 (patch)
treea6cb66b7e40467d14b6c7e38719ffcb8813318d0 /src/include/catalog/pg_index.h
parent3f03f74f3651cd2ded9899f5aa2a928ca8e0d480 (diff)
downloadpostgresql-6456b17bc1c60ec8d8f4ca08ddebaefad519afc7.tar.gz
Rename oid8 -> oidvector and int28 -> int2vector. Cleanup of *out functions.
Diffstat (limited to 'src/include/catalog/pg_index.h')
-rw-r--r--src/include/catalog/pg_index.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/catalog/pg_index.h b/src/include/catalog/pg_index.h
index 5ab3af31e5..52b112d3c5 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.13 2000/01/10 04:36:37 momjian Exp $
+ * $Id: pg_index.h,v 1.14 2000/01/10 16:13:20 momjian Exp $
*
* NOTES
* the genbki.sh script reads this file and generates .bki
@@ -45,8 +45,8 @@ CATALOG(pg_index)
Oid indrelid;
Oid indproc; /* registered procedure for functional
* index */
- int28 indkey;
- oid8 indclass;
+ int2vector indkey;
+ oidvector indclass;
bool indisclustered;
bool indislossy; /* do we fetch false tuples (lossy
* compression)? */