mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
Remove documentation of equals in CREATE DATABASE. Mention removal of
equals hack for the future.
This commit is contained in:
@ -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; }
|
||||
;
|
||||
|
Reference in New Issue
Block a user