From a2740a455f558a1b8b9cd1962f92980efa4a984a Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Mon, 26 Aug 1996 06:32:06 +0000 Subject: There, now we support GiST...now what? :) --- src/backend/nodes/parsenodes.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/backend/nodes/parsenodes.h') diff --git a/src/backend/nodes/parsenodes.h b/src/backend/nodes/parsenodes.h index f2c7c591095..d8ca5b9243e 100644 --- a/src/backend/nodes/parsenodes.h +++ b/src/backend/nodes/parsenodes.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parsenodes.h,v 1.4 1996/08/24 20:48:31 scrappy Exp $ + * $Id: parsenodes.h,v 1.5 1996/08/26 06:30:54 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -218,6 +218,7 @@ typedef struct IndexStmt { Node *whereClause; /* qualifications */ List *rangetable; /* range table, filled in by transformStmt() */ + bool *lossy; /* is index lossy? */ } IndexStmt; /* ---------------------- @@ -655,6 +656,7 @@ typedef struct IndexElem { char *name; /* name of index */ List *args; /* if not NULL, function index */ char *class; + TypeName *tname; /* type of index's keys (optional) */ } IndexElem; /* -- cgit v1.2.3