1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-07 19:06:32 +03:00

More EXTEND INDEX removal.

Martijn van Oosterhout
This commit is contained in:
Bruce Momjian
2001-07-16 19:07:40 +00:00
parent 40db52af34
commit 784def9e8e
5 changed files with 5 additions and 51 deletions

View File

@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: parsenodes.h,v 1.135 2001/07/12 18:03:00 tgl Exp $
* $Id: parsenodes.h,v 1.136 2001/07/16 19:07:40 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -465,19 +465,6 @@ typedef struct CommentStmt
char *comment; /* The comment to insert */
} CommentStmt;
/* ----------------------
* Extend Index Statement
* ----------------------
*/
typedef struct ExtendStmt
{
NodeTag type;
char *idxname; /* name of the index */
Node *whereClause; /* qualifications */
List *rangetable; /* range table, filled in by
* transformStmt() */
} ExtendStmt;
/* ----------------------
* Begin Recipe Statement
* ----------------------