Re: database introspection error - Mailing list pgsql-bugs

From Tom Lane
Subject Re: database introspection error
Date
Msg-id 24590.1303403331@sss.pgh.pa.us
Whole thread Raw
In response to database introspection error  (Jon Nelson <jnelson+pgsql@jamponi.net>)
Responses Re: database introspection error  (Jon Nelson <jnelson+pgsql@jamponi.net>)
List pgsql-bugs
Jon Nelson <jnelson+pgsql@jamponi.net> writes:
> SQLAlchemy encountered an error introspecting the tables. After
> inspecting the SQL that it was running, I boiled it down to this:

> SELECT c.relname,  a.attname
> FROM pg_index i, pg_class c, pg_attribute a
> WHERE i.indrelid = '16684' AND i.indexrelid = c.oid
>   AND a.attrelid = i.indexrelid
> ORDER BY c.relname, a.attnum;

> I believe that SQL gives me the name of an index and the attribute
> upon which that index is built for a particular relation (16684).
> However, the *results* of that query are _wrong_.  The 'attname' value
> for one row is wrong. It is the *previous* name of the column.

That appears to be pulling out the names of the columns of the index,
not the underlying table.  While older versions of Postgres will try to
rename index columns when the underlying table column is renamed, that
was given up as an unproductive activity awhile ago (mainly because
there isn't always a 1-to-1 mapping anyway).  So it's not surprising
to me that you're getting "stale" data here.

You might want to have a discussion with the SQLAlchemy people about
what it is that they're trying to accomplish and how it might be done
in a more bulletproof fashion.  The actual names of the columns of an
index are an implementation detail that shouldn't be relied on.

            regards, tom lane

pgsql-bugs by date:

Previous
From: Michael Musgrove
Date:
Subject: Re: BUG #5297: Add XATMI C API
Next
From: Tom Lane
Date:
Subject: Re: BUG #5297: Add XATMI C API