Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 266664f

Browse files
committed
Fix creation of temporary sequences in ecpg, per report from Edmund Bacon.
1 parent a56a016 commit 266664f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/interfaces/ecpg/preproc/preproc.y

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.259 2003/09/23 12:56:35 meskes Exp $ */
1+
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.260 2003/09/24 19:05:32 momjian Exp $ */
22

33
/* Copyright comment */
44
%{
@@ -1499,7 +1499,7 @@ CreateAsElement: ColId { $$ = $1; }
14991499
*****************************************************************************/
15001500

15011501
CreateSeqStmt: CREATE OptTemp SEQUENCE qualified_name OptSeqList
1502-
{ $$ = cat_str(4, make_str("create sequence"), $2, $4, $5); }
1502+
{ $$ = cat_str(4, make_str("create"), $2, make_str("sequence"), $4, $5); }
15031503
;
15041504

15051505
AlterSeqStmt: ALTER SEQUENCE qualified_name OptSeqList

0 commit comments

Comments
 (0)