diff --git a/doc/src/sgml/ref/create_database.sgml b/doc/src/sgml/ref/create_database.sgml
index 2c87d215914..0ee73e37265 100644
--- a/doc/src/sgml/ref/create_database.sgml
+++ b/doc/src/sgml/ref/create_database.sgml
@@ -1,5 +1,5 @@
@@ -24,10 +24,10 @@ PostgreSQL documentation
CREATE DATABASE name
- [ WITH [ OWNER [ = ] dbowner ]
- [ LOCATION [ = ] 'dbpath' ]
- [ TEMPLATE [ = ] template ]
- [ ENCODING [ = ] encoding ] ]
+ [ WITH [ OWNER dbowner ]
+ [ LOCATION 'dbpath' ]
+ [ TEMPLATE template ]
+ [ ENCODING encoding ] ]
@@ -186,11 +186,10 @@ CREATE DATABASE name
Normally, the creator becomes the owner of the new database.
- A different owner may be specified by using the
diff --git a/src/backend/parser/gram.y b/src/backend/parser/gram.y
index 37d9364eae8..66c11828b65 100644
--- a/src/backend/parser/gram.y
+++ b/src/backend/parser/gram.y
@@ -11,7 +11,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.279 2002/02/24 20:20:20 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.280 2002/02/25 02:53:46 momjian Exp $
*
* HISTORY
* AUTHOR DATE MAJOR EVENT
@@ -3155,6 +3155,10 @@ createdb_opt_item: LOCATION opt_equal Sconst
}
;
+/*
+ * Optional equals is here only for backward compatibility.
+ * Should be removed someday. bjm 2002-02-24
+ */
opt_equal: '=' { $$ = TRUE; }
| /*EMPTY*/ { $$ = FALSE; }
;