pgsql: Fix DROP ACCESS METHOD IF EXISTS.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix DROP ACCESS METHOD IF EXISTS.
Date: 2016-05-27 15:03:23
Message-ID: E1b6JIJ-0007dt-Eq@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix DROP ACCESS METHOD IF EXISTS.

The IF EXISTS option was documented, and implemented in the grammar, but
it didn't actually work for lack of support in does_not_exist_skipping().
Per bug #14160.

Report and patch by Kouhei Sutou

Report: <20160527070433(dot)19424(dot)81712(at)wrigleys(dot)postgresql(dot)org>

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/83dbde94f726f2517a79b1cea59e57452c36e734

Modified Files
--------------
src/backend/commands/dropcmds.c | 6 +++++-
src/test/regress/expected/drop_if_exists.out | 5 +++++
src/test/regress/sql/drop_if_exists.sql | 4 ++++
3 files changed, 14 insertions(+), 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2016-05-27 15:07:26 pgsql: Fix release-note typo.
Previous Message Kevin Grittner 2016-05-27 14:58:27 Re: [HACKERS] Re: pgsql: Avoid extra locks in GetSnapshotData if old_snapshot_threshold <