pgsql: Fix BuildIndexValueDescription for expressions

From: Stephen Frost <sfrost(at)snowman(dot)net>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix BuildIndexValueDescription for expressions
Date: 2015-01-30 03:01:20
Message-ID: E1YH1pg-0003pV-0d@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix BuildIndexValueDescription for expressions

In 804b6b6db4dcfc590a468e7be390738f9f7755fb we modified
BuildIndexValueDescription to pay attention to which columns are visible
to the user, but unfortunatley that commit neglected to consider indexes
which are built on expressions.

Handle error-reporting of violations of constraint indexes based on
expressions by not returning any detail when the user does not have
table-level SELECT rights.

Backpatch to 9.0, as the prior commit was.

Pointed out by Tom.

Branch
------
REL9_0_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/da8954b76b8eb288cca8b2707a65b1d4efa0b700

Modified Files
--------------
src/backend/access/index/genam.c | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Stephen Frost 2015-01-30 03:37:27 Re: [COMMITTERS] pgsql: Fix column-privilege leak in error-message paths
Previous Message Stephen Frost 2015-01-30 03:01:19 pgsql: Fix BuildIndexValueDescription for expressions