diff options
author | Neil Conway <neilc@samurai.com> | 2007-07-17 05:02:03 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2007-07-17 05:02:03 +0000 |
commit | 474774918b4b55e774d2fcc1d7e94c8c632fadef (patch) | |
tree | e66fbdcfb273895d951edbabf44cee998327000a /src/include/nodes/parsenodes.h | |
parent | 77d27e43e5f204736175a2f6fc45959e0dcb5fd8 (diff) | |
download | postgresql-474774918b4b55e774d2fcc1d7e94c8c632fadef.tar.gz postgresql-474774918b4b55e774d2fcc1d7e94c8c632fadef.zip |
Implement CREATE TABLE LIKE ... INCLUDING INDEXES. Patch from NikhilS,
based in part on an earlier patch from Trevor Hardcastle, and reviewed
by myself.
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r-- | src/include/nodes/parsenodes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 50bb6c2048f..a108759b760 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.349 2007/06/23 22:12:52 tgl Exp $ + * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.350 2007/07/17 05:02:02 neilc Exp $ * *------------------------------------------------------------------------- */ @@ -1501,6 +1501,7 @@ typedef struct IndexStmt char *tableSpace; /* tablespace, or NULL to use parent's */ List *indexParams; /* a list of IndexElem */ List *options; /* options from WITH clause */ + char *src_options; /* relopts inherited from source index */ Node *whereClause; /* qualification (partial-index predicate) */ bool unique; /* is index unique? */ bool primary; /* is index on primary key? */ |