Re: automating RangeTblEntry node support
Paul A Jungwirth <pj@illuminatedcomputing.com>
From: Paul Jungwirth <pj@illuminatedcomputing.com>
To: pgsql-hackers@lists.postgresql.org
Date: 2024-02-16T20:36:24Z
Lists: pgsql-hackers
On 1/15/24 02:37, Peter Eisentraut wrote:
> In this updated patch set, I have also added the treatment of the Constraint type. (I also noted
> that the manual read/write functions for the Constraint type are out-of-sync again, so simplifying
> this would be really helpful.) I have also added commit messages to each patch.
>
> The way I have re-ordered the patch series now, I think patches 0001 through 0003 are candidates for
> inclusion after review, patch 0004 still needs a bit more analysis and testing, as described therein.
I had to apply the first patch by hand (on 9f13376396), so this looks due for a rebase. Patches 2-4
applied fine.
Compiles & passes tests after each patch.
The overall idea seems like a good improvement to me.
A few remarks about cleaning up the RangeTblEntry comments:
After the fourth patch we have a "Fields valid in all RTEs" comment twice in the struct, once at the
top and once at the bottom. It's fine IMO but maybe the second could be "More fields valid in all RTEs"?
The new order of fields in RangleTblEntry matches the intro comment, which seems like another small
benefit.
It seems like we are moving away from ever putting RTEKind-specific fields into a union as suggested
by the FIXME comment here. It was written in 2002. Is it time to remove it?
This now needs to say "above" not "below":
/*
* join_using_alias is an alias clause attached directly to JOIN/USING. It
* is different from the alias field (below) in that it does not hide the
* range variables of the tables being joined.
*/
Alias *join_using_alias pg_node_attr(query_jumble_ignore);
Re bloating the serialization output, we could leave this last patch until after the work on that
other thread is done to skip default-valued items.
Yours,
--
Paul ~{:-)
pj@illuminatedcomputing.com
Commits
-
Make RangeTblEntry dump order consistent
- b4080fa3dcf6 17.0 landed
-
Remove custom _jumbleRangeTblEntry()
- 367c989cd840 17.0 landed
-
Reformat some node comments
- d575051b9af9 17.0 landed
-
Improve comment
- 1e1eb12c25c3 17.0 landed
-
Remove obsolete comment
- 83d8065b1f74 17.0 landed
-
Remove custom Constraint node read/write implementations
- fbc93b8b5f59 17.0 landed