pgsql: Add p_names field to ParseNamespaceItem

From: Peter Eisentraut <peter(at)eisentraut(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Add p_names field to ParseNamespaceItem
Date: 2021-03-31 09:22:05
Message-ID: E1lRX37-00083H-0M@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add p_names field to ParseNamespaceItem

ParseNamespaceItem had a wired-in assumption that p_rte->eref
describes the table and column aliases exposed by the nsitem. This
relaxes this by creating a separate p_names field in an nsitem. This
is mainly preparation for a patch for JOIN USING aliases, but it saves
one indirection in common code paths, so it's possibly a win on its
own.

Author: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Discussion: https://www.postgresql.org/message-id/785329.1616455091@sss.pgh.pa.us

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/66392d396508c91c2ec07a61568bf96acb663ad8

Modified Files
--------------
src/backend/parser/parse_clause.c | 6 +++---
src/backend/parser/parse_relation.c | 29 +++++++++++++++++------------
src/include/parser/parse_node.h | 10 ++++++++--
3 files changed, 28 insertions(+), 17 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Etsuro Fujita 2021-03-31 09:50:21 pgsql: Add support for asynchronous execution.
Previous Message David Rowley 2021-03-31 08:05:43 Re: pgsql: Extended statistics on expressions