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/backend/bootstrap | |
parent | 77d27e43e5f204736175a2f6fc45959e0dcb5fd8 (diff) |
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/backend/bootstrap')
-rw-r--r-- | src/backend/bootstrap/bootparse.y | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/bootstrap/bootparse.y b/src/backend/bootstrap/bootparse.y index ff2f7f70c3c..3fd29b7e971 100644 --- a/src/backend/bootstrap/bootparse.y +++ b/src/backend/bootstrap/bootparse.y @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/bootstrap/bootparse.y,v 1.88 2007/03/13 00:33:39 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/bootstrap/bootparse.y,v 1.89 2007/07/17 05:02:00 neilc Exp $ * *------------------------------------------------------------------------- */ @@ -252,7 +252,7 @@ Boot_DeclareIndexStmt: LexIDStr($8), NULL, $10, - NULL, NIL, + NULL, NIL, NULL, false, false, false, false, false, true, false, false); do_end(); @@ -270,7 +270,7 @@ Boot_DeclareUniqueIndexStmt: LexIDStr($9), NULL, $11, - NULL, NIL, + NULL, NIL, NULL, true, false, false, false, false, true, false, false); do_end(); |