Commit 6c183005 authored by Bruce Momjian's avatar Bruce Momjian

Mark column as not used.

parent b350b521
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $Id: pg_index.h,v 1.19 2001/05/15 03:49:35 momjian Exp $ * $Id: pg_index.h,v 1.20 2001/05/17 00:29:52 momjian Exp $
* *
* NOTES * NOTES
* the genbki.sh script reads this file and generates .bki * the genbki.sh script reads this file and generates .bki
...@@ -48,13 +48,10 @@ CATALOG(pg_index) ...@@ -48,13 +48,10 @@ CATALOG(pg_index)
* index */ * index */
int2vector indkey; int2vector indkey;
oidvector indclass; oidvector indclass;
bool indisclustered; /* this is unused, but is referenced by bool indisclustered; /* unused */
* the ODBC driver. Remove it someday.
* bjm 2001-05-14
*/
bool indislossy; /* do we fetch false tuples (lossy bool indislossy; /* do we fetch false tuples (lossy
* compression)? */ * compression)? */
bool indhaskeytype; /* does key type != attribute type? */ bool indhaskeytype; /* not used, originally added by GIST */
bool indisunique; /* is this a unique index? */ bool indisunique; /* is this a unique index? */
bool indisprimary; /* is this index for primary key */ bool indisprimary; /* is this index for primary key */
Oid indreference; /* oid of index of referenced relation (ie Oid indreference; /* oid of index of referenced relation (ie
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
# #
# Copyright (c) 1994, Regents of the University of California # Copyright (c) 1994, Regents of the University of California
# #
# $Header: /cvsroot/pgsql/src/interfaces/jdbc/Attic/Makefile,v 1.28 2001/03/11 11:07:00 petere Exp $ # $Header: /cvsroot/pgsql/src/interfaces/jdbc/Attic/Makefile,v 1.29 2001/05/17 00:29:52 momjian Exp $
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
...@@ -37,3 +37,4 @@ uninstall: ...@@ -37,3 +37,4 @@ uninstall:
clean distclean maintainer-clean: clean distclean maintainer-clean:
$(ANT) -buildfile $(top_srcdir)/build.xml clean $(ANT) -buildfile $(top_srcdir)/build.xml clean
rm -f org/postgresql/Driver.java
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment