aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2003-11-19 13:19:40 +0000
committerMichael Meskes <meskes@postgresql.org>2003-11-19 13:19:40 +0000
commita62f62d78b3c11a7da90d0bc31ec4c7d4126d46e (patch)
treea3fc12bae6a99b35baddca82a4bca6a22260b4db
parent84fd77d782b618868c86b1815a86908c30ea0328 (diff)
downloadpostgresql-a62f62d78b3c11a7da90d0bc31ec4c7d4126d46e.tar.gz
postgresql-a62f62d78b3c11a7da90d0bc31ec4c7d4126d46e.zip
Fixed typo in create schema parsing.
-rw-r--r--src/interfaces/ecpg/preproc/preproc.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/ecpg/preproc/preproc.y b/src/interfaces/ecpg/preproc/preproc.y
index 0faca33fc3a..c07e4a04930 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.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; }