pgsql: Add readfuncs.c support for plan nodes.

From: Robert Haas <rhaas(at)postgresql(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Add readfuncs.c support for plan nodes.
Date: 2015-09-23 15:56:15
Message-ID: E1ZemP1-0008PB-7M@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add readfuncs.c support for plan nodes.

For parallel query, we need to be able to pass a Plan to a worker, so
that it knows what it's supposed to do. We could invent our own way
of serializing plans for that purpose, but piggybacking on the
existing node infrastructure seems like a much better idea.

Initially, we'll probably only support a limited number of nodes
within parallel workers, but this commit adds support for everything
in plannodes.h except CustomScan, because doing it all at once seems
easier than doing it piecemeal, and it makes testing this code easier,
too. CustomScan is excluded because making that work requires a
larger rework of that facility.

Amit Kapila, reviewed and slightly revised by me.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/a0d9f6e434bb56f7e5441b7988f3982feead33b3

Modified Files
--------------
src/backend/nodes/outfuncs.c | 8 +-
src/backend/nodes/readfuncs.c | 1020 ++++++++++++++++++++++++++++++++++++++++-
2 files changed, 1023 insertions(+), 5 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2015-09-23 22:27:30 pgsql: Make ANALYZE compute basic statistics even for types with no "="
Previous Message Robert Haas 2015-09-23 14:57:15 pgsql: Print a MergeJoin's mergeNullsFirst array as bool, not int.