Thread: pgsql: Fix a couple of obvious problems in DROP IF EXISTS patch.

pgsql: Fix a couple of obvious problems in DROP IF EXISTS patch.

From
tgl@postgresql.org (Tom Lane)
Date:
Log Message:
-----------
Fix a couple of obvious problems in DROP IF EXISTS patch.

Modified Files:
--------------
    pgsql/src/backend/commands:
        aggregatecmds.c (r1.35 -> r1.36)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/commands/aggregatecmds.c.diff?r1=1.35&r2=1.36)
    pgsql/src/backend/parser:
        gram.y (r2.546 -> r2.547)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/parser/gram.y.diff?r1=2.546&r2=2.547)

Re: pgsql: Fix a couple of obvious problems in DROP

From
Andrew Dunstan
Date:

Tom Lane wrote:

>Log Message:
>-----------
>Fix a couple of obvious problems in DROP IF EXISTS patch.
>
>
>
>

-                    n->missing_ok =
+                    n->missing_ok = $3;


Oops - sorry about that. I don't know how that one got past me - thanks for picking it up.

cheers

andrew