Re: WIP: Access method extendability
Alexander Korotkov <a.korotkov@postgrespro.ru>
From: Alexander Korotkov <a.korotkov@postgrespro.ru>
To: Teodor Sigaev <teodor@sigaev.ru>,
Aleksander Alekseev <a.alekseev@postgrespro.ru>
Cc: Petr Jelinek <petr@2ndquadrant.com>,
Alvaro Herrera <alvherre@2ndquadrant.com>, David Steele <david@pgmasters.net>,
Michael Paquier <michael.paquier@gmail.com>, Jim Nasby <Jim.Nasby@bluetreble.com>,
pgsql-hackers <pgsql-hackers@postgresql.org>
Date: 2016-03-31T15:29:37Z
Lists: pgsql-hackers
Attachments
- 0002-generic-xlog.15.patch (application/octet-stream) patch 0002
- 0003-bloom-contrib.15.patch (application/octet-stream) patch 0003
Hi! New revision of patches is attached. Changes are following: 1) API of generic xlog was changed: now there is no static variables, GenericXLogStart() returns palloc'd struct. 2) Generic xlog use elog instead ereport since it reports internal errors which shouldn't happen normally. 3) Error messages doesn't contains name of the function. 4) Bloom contrib was pgindented. 5) More comments for bloomb. 6) One more assert was added to bloom. 7) makeDefaultBloomOptions was renamed to adjustBloomOptions. Now it only modifies its parameter. palloc is done outside of this function. 8) BloomBuildState is explicitly zeroed. ------ Alexander Korotkov Postgres Professional: http://www.postgrespro.com The Russian Postgres Company
Commits
-
Support CREATE ACCESS METHOD
- 473b93287040 9.6.0 landed
-
Restructure index access method API to hide most of it at the C level.
- 65c5fcd353a8 9.6.0 cited