]> granicus.if.org Git - postgresql/commitdiff
Fixed typo in create schema parsing.
authorMichael Meskes <meskes@postgresql.org>
Wed, 19 Nov 2003 13:19:40 +0000 (13:19 +0000)
committerMichael Meskes <meskes@postgresql.org>
Wed, 19 Nov 2003 13:19:40 +0000 (13:19 +0000)
src/interfaces/ecpg/preproc/preproc.y

index 0faca33fc3adf4cd1f0795a8dfddcabab8d47bdf..c07e4a04930045192d5c7f247d7c901112c69282 100644 (file)
@@ -1,4 +1,4 @@
-/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.263.2.1 2003/11/08 19:14:20 meskes Exp $ */
+/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.263.2.2 2003/11/19 13:19:40 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; }