"Gurjeet Singh" <[EMAIL PROTECTED]> writes:
>     Please refer the following session snippet. It seems that creating and
> dropping an index on a table, within a transaction, leaves the table marked
> as having an index.

This isn't a bug.  Refer to catalogs.sgml:

relhasindex
        True if this is a table and it has (or recently had) any indexes.
        This is set by CREATE INDEX, but not cleared immediately by DROP
        INDEX. VACUUM clears relhasindex if it finds the table has no indexes. 

The flag is only used as a hint that it's worth looking in pg_index to
see what rows there are for the table.

As for "tracking it down", read index_drop().

                        regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
       choose an index scan if your joining column's datatypes do not
       match

Reply via email to