Alvaro Herrera <[EMAIL PROTECTED]> writes: > This is an interesting idea, but I think it's attacking the wrong > problem. To me, the problem here is that an ANALYZE should not block > CREATE INDEX or certain forms of ALTER TABLE.
I doubt that that will work; in particular I'm pretty dubious that you can safely make CREATE INDEX and VACUUM run together. Since they'd be unlikely to be using the identical OldestXmin horizon, you'd likely end up with dangling index entries (ie, CREATE INDEX indexes a tuple that the VACUUM removes shortly afterward). regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 6: explain analyze is your friend