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

Commit 5032f83

Browse files
author
Michael Meskes
committed
Fixed typo in create schema parsing.
1 parent 25487b1 commit 5032f83

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/interfaces/ecpg/preproc/preproc.y

Lines changed: 3 additions & 3 deletions
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.264 2003/11/08 19:46:27 meskes Exp $ */
1+
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.265 2003/11/19 13:18:13 meskes Exp $ */
22

33
/* Copyright comment */
44
%{
@@ -966,9 +966,9 @@ DropGroupStmt: DROP GROUP_P UserId
966966
*****************************************************************************/
967967

968968
CreateSchemaStmt: CREATE SCHEMA UserId OptSchemaName AUTHORIZATION UserId OptSchemaEltList
969-
{ $$ = cat_str(6, make_str("create scheme"), $3, $4, make_str("authorization"), $6, $7); }
969+
{ $$ = cat_str(6, make_str("create schema"), $3, $4, make_str("authorization"), $6, $7); }
970970
| CREATE SCHEMA ColId OptSchemaEltList
971-
{ $$ = cat_str(3, make_str("create scheme"), $3, $4); }
971+
{ $$ = cat_str(3, make_str("create schema"), $3, $4); }
972972
;
973973

974974
OptSchemaName: ColId { $$ = $1; }

0 commit comments

Comments
 (0)