On Tue, May 12, 2026 at 12:11:16PM +0800, jian he wrote: > On Wed, Apr 15, 2026 at 9:19 AM Bruce Momjian <[email protected]> wrote: > > > > I have completed the first draft of the PG 19 release notes: > > > > https://www.postgresql.org/docs/devel/release-19.html > > > > Add hooks planner_setup_hook and planner_shutdown_hook (Robert Haas) § > > https://git.postgresql.org/cgit/postgresql.git/commit/?id=4020b37 > We also introduced join_path_setup_hook, joinrel_setup_hook. > > Should we also mention these two hooks?
Yes, I missed seeing the addition of these two hooks, so patch attached and applied. -- Bruce Momjian <[email protected]> https://momjian.us EDB https://enterprisedb.com Do not let urgent matters crowd out time for investment in the future.
diff --git a/doc/src/sgml/release-19.sgml b/doc/src/sgml/release-19.sgml index b21549c1de5..ff66009e046 100644 --- a/doc/src/sgml/release-19.sgml +++ b/doc/src/sgml/release-19.sgml @@ -3018,12 +3018,15 @@ Update Unicode data to version 17.0.0 (Peter Eisentraut) <!-- Author: Robert Haas <[email protected]> 2025-10-08 [94f3ad396] Add planner_setup_hook and planner_shutdown_hook. +Author: Robert Haas <[email protected]> +2026-01-28 [4020b370f] Allow for plugin control over path generation strategies --> <listitem> <para> -Add hooks planner_setup_hook and planner_shutdown_hook (Robert Haas) +Add hooks planner_setup_hook, planner_shutdown_hook, joinrel_setup_hook, and join_path_setup_hook (Robert Haas) <ulink url="&commit_baseurl;94f3ad396">§</ulink> +<ulink url="&commit_baseurl;4020b370f">§</ulink> </para> </listitem>
