Re: [HACKERS] Broken code in gram.y

2002-03-19 Thread Bruce Momjian
Thanks. Fixed. --- Fernando Nasser wrote: > Well, > > Someone just dropped the DROP DATABASE statement rules right in the > middle of the CREATE DATABASE production rules!!! > > Fernando > > > > Fernando Nasser wrote:

Re: [HACKERS] Broken code in gram.y

2002-03-19 Thread Fernando Nasser
Well, Someone just dropped the DROP DATABASE statement rules right in the middle of the CREATE DATABASE production rules!!! Fernando Fernando Nasser wrote: > > The OWNER production rules added to DROP DATABASE: > > DropdbStmt: DROP DATABASE database_name >

[HACKERS] Broken code in gram.y

2002-03-18 Thread Fernando Nasser
The OWNER production rules added to DROP DATABASE: DropdbStmt: DROP DATABASE database_name { DropdbStmt *n = makeNode(DropdbStmt); n->dbname = $3;