Spiros Ioannou <sivann@xxxxxxxxxxxx> writes: > It is ORDER BY measurement_time, not measurement_id, and measurement_time > is used to create the partition. So the planner should know the correct > order, but instead it seems to query tables in the wrong order. The planner does not know that, and even if it attempted to figure it out by comparing the child tables' constraints, it could not generate a plan that considered only one child table as you incorrectly imagine. What if the "latest" table turned out to be empty at runtime? The obtained plan with a Merge Append atop Index Scan Backwards nodes seems perfectly reasonable to me. This will result in fetching only the latest row within each partition, so that the work involved is O(number of partitions) not O(total number of rows). If you're not happy with that, reconsider how many partitions you really need. Newbies almost invariably create far more partitions than is a good idea for performance. In my view, if you've got more than a couple dozen, you're doing it wrong. Partitioning is, in general, not a benefit for query performance (except in a few very narrow, specialized cases); and the more partitions you have the worse the penalty. Partitioning only helps for data management, in particular being able to drop old data in bulk rather than through expensive DELETE WHERE queries. How often do you do that, and do you really need to be able to do it at a small granularity? regards, tom lane -- Sent via pgsql-general mailing list (pgsql-general@xxxxxxxxxxxxxx) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-general