From: Michael Meskes Date: Wed, 19 Nov 2003 13:19:40 +0000 (+0000) Subject: Fixed typo in create schema parsing. X-Git-Url: http://waps.l3s.uni-hannover.de/gitweb/?a=commitdiff_plain;h=47aedf0b9c11d1f8e20c1d59c471c45bb24db421;p=users%2Fbernd%2Fpostgres.git Fixed typo in create schema parsing. --- diff --git a/src/interfaces/ecpg/preproc/preproc.y b/src/interfaces/ecpg/preproc/preproc.y index 8d915721f6..908b9f43f7 100644 --- a/src/interfaces/ecpg/preproc/preproc.y +++ b/src/interfaces/ecpg/preproc/preproc.y @@ -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; }