diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2024-03-22 07:12:28 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2024-03-22 07:20:11 +0100 |
commit | 83d8065b1f7477f4fb49e53ece0e6e0e516993fe (patch) | |
tree | 7201179ec1faa0049fb8ef40e6c288a4150d7b0a /src | |
parent | 085e759e9da77b7f5e859d23f72653f36277a053 (diff) | |
download | postgresql-83d8065b1f7477f4fb49e53ece0e6e0e516993fe.tar.gz postgresql-83d8065b1f7477f4fb49e53ece0e6e0e516993fe.zip |
Remove obsolete comment
The idea to use a union in the definition of RangeTblEntry is clearly
not being pursued.
Reviewed-by: Andrew Dunstan <andrew@dunslane.net>
Discussion: https://www.postgresql.org/message-id/flat/4b27fc50-8cd6-46f5-ab20-88dbaadca645@eisentraut.org
Diffstat (limited to 'src')
-rw-r--r-- | src/include/nodes/parsenodes.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 9b709f03908..9b39aaa9aac 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -1030,12 +1030,6 @@ typedef struct RangeTblEntry RTEKind rtekind; /* see above */ /* - * XXX the fields applicable to only some rte kinds should be merged into - * a union. I didn't do this yet because the diffs would impact a lot of - * code that is being actively worked on. FIXME someday. - */ - - /* * Fields valid for a plain relation RTE (else zero): * * inh is true for relation references that should be expanded to include |