Stephen Frost <sfrost@xxxxxxxxxxx> writes: > What I think is happening here is that PG is pushing down that filter > (not typically a bad thing..), but with that condition, it's going to > scan the index until it finds a match for that filter before returning > back up only to have that result cut out due to the limit. Yeah, it's spending quite a lot of time finding the first matching row in each child table. I'm curious why that is though; are the child tables not set up with nonoverlapping firstloadtime ranges? > What would be great is if PG would realize that the CHECK constraints > prevent earlier records from being in these earlier tables, The explain shows that that isn't the case, because it *is* finding at least one candidate row in each table. It's just running quite far into the firstloadtime sequence to do it. If you're stuck with this table arrangement, one thing that would help is a two-column index on (host_guid, firstloadtime) on each child table. That would match the search condition exactly, and so reduce the cost to find the first matching row to nearly nil. Whether this query's speed is important enough to justify maintaining such an index is a question I can't answer for you. regards, tom lane -- Sent via pgsql-performance mailing list (pgsql-performance@xxxxxxxxxxxxxx) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-performance