From: | Robert Haas <rhaas(at)postgresql(dot)org> |
---|---|
To: | pgsql-committers(at)postgresql(dot)org |
Subject: | pgsql: Improve handling of CustomPath/CustomPlan(State) children. |
Date: | 2015-06-26 13:42:46 |
Message-ID: | E1Z8Tu2-0005Nr-7Y@gemulon.postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
Improve handling of CustomPath/CustomPlan(State) children.
Allow CustomPath to have a list of paths, CustomPlan a list of plans,
and CustomPlanState a list of planstates known to the core system, so
that custom path/plan providers can more reasonably use this
infrastructure for nodes with multiple children.
KaiGai Kohei, per a design suggestion from Tom Lane, with some
further kibitzing by me.
Branch
------
master
Details
-------
http://git.postgresql.org/pg/commitdiff/5ca611841bcd37c7ee8448c46c8398ef8d8edcc4
Modified Files
--------------
doc/src/sgml/custom-scan.sgml | 10 +++++++++-
src/backend/commands/explain.c | 22 ++++++++++++++++++++++
src/backend/optimizer/plan/createplan.c | 13 ++++++++++++-
src/backend/optimizer/plan/setrefs.c | 8 ++++++++
src/backend/optimizer/plan/subselect.c | 25 +++++++++++++++++++++----
src/include/nodes/execnodes.h | 1 +
src/include/nodes/plannodes.h | 1 +
src/include/nodes/relation.h | 4 +++-
8 files changed, 77 insertions(+), 7 deletions(-)
From | Date | Subject | |
---|---|---|---|
Next Message | Andres Freund | 2015-06-26 15:13:32 | pgsql: Fix the fallback memory barrier implementation to be reentrant. |
Previous Message | Heikki Linnakangas | 2015-06-26 09:44:16 | pgsql: Fix a couple of bugs with wal_log_hints. |