Re: DatabaseMetaData.getIndexInfo and function-based indexes - Mailing list pgsql-jdbc

From peter royal
Subject Re: DatabaseMetaData.getIndexInfo and function-based indexes
Date
Msg-id F29E01D5-827E-11D9-8AAF-000A95AC787E@pace2020.com
Whole thread Raw
In response to Re: DatabaseMetaData.getIndexInfo and function-based indexes  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: DatabaseMetaData.getIndexInfo and function-based indexes  (Kris Jurka <books@ejurka.com>)
List pgsql-jdbc
On Feb 19, 2005, at 12:54 AM, Tom Lane wrote:
> Kris Jurka <books@ejurka.com> writes:
>> This is what is actually stored in the pg_attribute table as the
>> column
>> name for the index.  Determining what the actual expression is would
>> involve decoding the pg_index.indexpr column with pg_get_expr, which
>> could
>> be done, but then some manual parsing would need to be done to split
>> this
>> into multiple columns for something like (upper(a), lower(b)).  So the
>> driver can figure this information out, but doesn't presently.
>
> FYI, pg_get_indexdef makes that pretty simple in PG >= 7.4:

i'm mainly concerned about single-column functional indexes right now.
being able to get upper(a) as the column name would be enough now. but
tom's method for working with multi-column functional indices would be
a bonus too.

would a patch to have DMD.getIndexInfo() return this information be
accepted into the tree? if so, i'll work one up.
-pete

Attachment

pgsql-jdbc by date:

Previous
From: Tom Lane
Date:
Subject: Re: DatabaseMetaData.getIndexInfo and function-based indexes
Next
From: Sven Köhler
Date:
Subject: How to get generated primary key?