Re: pgsql: Support partition pruning at execution time
David Rowley <david.rowley@2ndquadrant.com>
From: David Rowley <david.rowley@2ndquadrant.com>
To: Tom Lane <tgl@sss.pgh.pa.us>
Cc: Alvaro Herrera <alvherre@alvh.no-ip.org>,
Andrew Gierth <andrew@tao11.riddles.org.uk>, PostgreSQL Hackers <pgsql-hackers@lists.postgresql.org>
Date: 2018-04-10T15:56:56Z
Lists: pgsql-hackers
On 11 April 2018 at 03:42, Tom Lane <tgl@sss.pgh.pa.us> wrote: > Alvaro Herrera <alvherre@alvh.no-ip.org> writes: >> 2. Do we want to revert Andrew's test stabilization patch? If I >> understand correctly, the problem is the inverse of what was diagnosed: >> "any running transaction at the time of the test could prevent pages >> from being set as all-visible". That's correct, but the test doesn't >> depend on pages being all-visible -- quite the contrary, it depends on >> the pages NOT being all-visible (which is why the HeapFetches counts are >> all non-zero). Since the pages contain very few tuples, autovacuum >> should never process the tables anyway. > > I did not especially like the original test output, because even without > the bug at hand, it seemed to me the number of heap fetches might vary > depending on BLCKSZ. Given that the point of the test is just to check > partition pruning, seems like IOS vs regular indexscan isn't a critical > difference. I'd keep Andrew's change but fix the comment. hmm, I don't feel strongly about reverting or not, but if [auto-]vacuum has not visited the table, then I don't see why BLCKSZ would have an effect here. -- David Rowley http://www.2ndQuadrant.com/ PostgreSQL Development, 24x7 Support, Training & Services
Commits
-
Update Append's idea of first_partial_plan
- b7e2cbc5b49f 11.0 landed
-
Fix IndexOnlyScan counter for heap fetches in parallel mode
- 15a8f8caad14 11.0 landed
-
Fix incorrect logic for choosing the next Parallel Append subplan
- 468abb8f7a69 11.0 landed
-
Minor comment updates
- d7a95f06a1a1 11.0 landed
-
Attempt to stabilize partition_prune test output.
- b47a86f5008f 11.0 landed
-
Support partition pruning at execution time
- 499be013de65 11.0 cited