diff options
author | Michael Meskes <meskes@postgresql.org> | 2003-11-19 13:18:13 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2003-11-19 13:18:13 +0000 |
commit | 5032f83082e5bdb37f8dbf02fa00c4886fb6d2ce (patch) | |
tree | 3b4cba71d1f3c2fc614077a11fc9e05d385adc6e /src | |
parent | 25487b12d0b2b4b875cb121960bf7f86d1b91f86 (diff) | |
download | postgresql-5032f83082e5bdb37f8dbf02fa00c4886fb6d2ce.tar.gz postgresql-5032f83082e5bdb37f8dbf02fa00c4886fb6d2ce.zip |
Fixed typo in create schema parsing.
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/ecpg/preproc/preproc.y | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/ecpg/preproc/preproc.y b/src/interfaces/ecpg/preproc/preproc.y index 86e9afbe7bf..2eb53211371 100644 --- a/src/interfaces/ecpg/preproc/preproc.y +++ b/src/interfaces/ecpg/preproc/preproc.y @@ -1,4 +1,4 @@ -/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.264 2003/11/08 19:46:27 meskes Exp $ */ +/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.265 2003/11/19 13:18:13 meskes Exp $ */ /* Copyright comment */ %{ @@ -966,9 +966,9 @@ DropGroupStmt: DROP GROUP_P UserId *****************************************************************************/ CreateSchemaStmt: CREATE SCHEMA UserId OptSchemaName AUTHORIZATION UserId OptSchemaEltList - { $$ = cat_str(6, make_str("create scheme"), $3, $4, make_str("authorization"), $6, $7); } + { $$ = cat_str(6, make_str("create schema"), $3, $4, make_str("authorization"), $6, $7); } | CREATE SCHEMA ColId OptSchemaEltList - { $$ = cat_str(3, make_str("create scheme"), $3, $4); } + { $$ = cat_str(3, make_str("create schema"), $3, $4); } ; OptSchemaName: ColId { $$ = $1; } |