pgsql: Don't try to use a unopened relation

From: Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Don't try to use a unopened relation
Date: 2012-11-07 19:34:59
Message-ID: E1TWBOt-00085i-Q9@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Don't try to use a unopened relation

Commit 4c9d0901 mistakenly introduced a call to
TransferPredicateLocksToHeapRelation() on an index relation that had
been closed a few lines above. Moving up an index_open() call that's
below is enough to fix the problem.

Discovered by me while testing an unrelated patch.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/4ee5c40b06f098910ed0fc5fd72fb2744776ccbb

Modified Files
--------------
src/backend/catalog/index.c | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Bruce Momjian 2012-11-07 20:01:28 pgsql: Add URLs to document why DLLIMPORT is needed on Windows.
Previous Message Bruce Momjian 2012-11-07 18:36:19 pgsql: In pg_upgrade docs, mention using base backup as part of rsync f