Re: tableam vs. TOAST
Robert Haas <robertmhaas@gmail.com>
From: Robert Haas <robertmhaas@gmail.com>
To: Peter Eisentraut <peter.eisentraut@2ndquadrant.com>
Cc: Andres Freund <andres@anarazel.de>,
Alvaro Herrera <alvherre@2ndquadrant.com>, Prabhat Sahu <prabhat.sahu@enterprisedb.com>, PostgreSQL Hackers <pgsql-hackers@lists.postgresql.org>
Date: 2019-12-17T21:12:49Z
Lists: pgsql-hackers
Attachments
- v10-0003-tableam-New-callback-relation_fetch_toast_slice.patch (application/octet-stream) patch v10-0003
- v10-0001-tableam-Allow-choice-of-toast-AM.patch (application/octet-stream) patch v10-0001
- v10-0002-Move-heap-specific-detoasting-logic-into-a-separ.patch (application/octet-stream) patch v10-0002
On Fri, Nov 22, 2019 at 10:41 AM Robert Haas <robertmhaas@gmail.com> wrote: > Thanks for the review. Updated patches attached. This version is more > complete than the last set of patches I posted. It looks like this: > > 0001 - Lets a table AM that needs a toast table choose the AM that > will be used to implement the toast table. > 0002 - Refactoring and code cleanup for TOAST code. > 0003 - Move heap-specific portion of logic refactored by previous > patch to a separate function. > 0004 - Lets a table AM arrange to call a different function when > detoasting, instead of the one created by 0003. Hearing no further comments, I went ahead and pushed 0002 today. That turned out to have a bug, so I pushed a fix for that. Hopefully the buildfarm will agree that it's fixed. Meanwhile, here are the remaining patches again, rebased over the bug fix. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company
Commits
-
tableam: New callback relation_fetch_toast_slice.
- ce242ae154dd 13.0 landed
-
tableam: Allow choice of toast AM.
- 83322e38da1a 13.0 landed
-
Move heap-specific detoasting logic into a separate function.
- e9fd0415e6e2 13.0 landed
-
Code cleanup for toast_fetch_datum and toast_fetch_datum_slice.
- d5406dea25b6 13.0 landed
-
Rename some toasting functions based on whether they are heap-specific.
- 2e8b6bfa90b2 13.0 landed
-
Create an API for inserting and deleting rows in TOAST tables.
- bd124996ef0d 13.0 landed
-
Split tuptoaster.c into three separate files.
- 8b94dab06617 13.0 landed
-
tableam: Move heap-specific logic from needs_toast_table below tableam.
- 1171d7d58545 12.0 cited