"Joshua D. Drake" <jd@xxxxxxxxxxxxxxxxx> writes: > "Scott Marlowe" <scott.marlowe@xxxxxxxxx> wrote: >> begin; >> drop index abc_dx; >> select .... >> rollback; >> >> and viola, your index is still there. note that there are likely some >> locking issues with this, so be careful with it in production. But on >> a test box it's a very easy way to test various indexes. > Wouldn't you also bloat the index? No, what makes you think that? The index won't change at all in the above example. The major problem is, as Scott says, that DROP INDEX takes exclusive lock on the table so any other sessions will be locked out of it for the duration of your test query. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 7: You can help support the PostgreSQL project by donating at http://www.postgresql.org/about/donate