Re: Compressed TOAST Slicing
Paul Ramsey <pramsey@cleverelephant.ca>
From: Paul Ramsey <pramsey@cleverelephant.ca>
To: Robert Haas <robertmhaas@gmail.com>
Cc: Tom Lane <tgl@sss.pgh.pa.us>,
Stephen Frost <sfrost@snowman.net>,
Andres Freund <andres@anarazel.de>,
Michael Paquier <michael@paquier.xyz>,
Regina Obe <r@pcorp.us>,
PostgreSQL Hackers <pgsql-hackers@lists.postgresql.org>
Date: 2019-03-18T15:06:14Z
Lists: pgsql-hackers
Commits
Same data as JSON:
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
Add support for partial TOAST decompression
- 4d0e994eed83 12.0 landed
-
Remove remaining hard-wired OID references in the initial catalog data.
- 3aa0395d4ed3 12.0 cited
-
Rephrase references to "time qualification".
- ebcc7bf949ba 12.0 cited
Attachments
- compressed-datum-slicing-20190318a.patch (application/octet-stream) patch
> On Mar 18, 2019, at 7:34 AM, Robert Haas <robertmhaas@gmail.com> wrote: > > On Mon, Mar 18, 2019 at 10:14 AM Tom Lane <tgl@sss.pgh.pa.us> wrote: >> Stephen Frost <sfrost@snowman.net> writes: >>> * Andres Freund (andres@anarazel.de) wrote: >>>> I don't think that should stop us from breaking the API. You've got to >>>> do quite low level stuff to need pglz directly, in which case such an >>>> API change should be the least of your problems between major versions. >> >>> Agreed, this is across a major version and I don't think it's an issue >>> to break the API. >> >> Yeah. We don't normally hesitate to change internal APIs across major >> versions, as long as >> (a) the breakage will be obvious when recompiling an extension, and >> (b) it will be clear how to get the same behavior as before. >> >> Adding an argument qualifies on both counts. Sometimes, if a very >> large number of call sites would be affected, it makes sense to use >> a wrapper function so that we don't have to touch so many places; >> but that doesn't apply here. > > +1. I think Paul had it right originally. In that spirit, here is a “one pglz_decompress function, new parameter” version for commit. Thanks! P