mirror of
https://github.com/postgres/postgres.git
synced 2025-07-21 16:02:15 +03:00
Implement CREATE TABLE LIKE ... INCLUDING INDEXES. Patch from NikhilS,
based in part on an earlier patch from Trevor Hardcastle, and reviewed by myself.
This commit is contained in:
@ -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();
|
||||
|
Reference in New Issue
Block a user