pgsql: Fix incorrect access to pg_index.indcollation.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix incorrect access to pg_index.indcollation.
Date: 2011-03-06 17:11:10
Message-ID: E1PwHU6-0007mT-Eq@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix incorrect access to pg_index.indcollation.

Since this field is after a variable-length field, it can't simply be
accessed via the C struct for pg_index. Fortunately, the relcache already
did the dirty work of pulling the information out to where it can be
accessed easily, so this is a one-line fix.

Andres Freund

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/149b2673c244b92b59411dd2292d6ddcfb03d5d4

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

Browse pgsql-committers by date

  From Date Subject
Next Message Simon Riggs 2011-03-06 22:51:56 pgsql: Efficient transaction-controlled synchronous replication.
Previous Message Bruce Momjian 2011-03-06 11:35:36 pgsql: Improve pg_upgrade relation name check logic for pre-8.4 servers