Re: Join Correlation Name - Mailing list pgsql-hackers

From Fabien COELHO
Subject Re: Join Correlation Name
Date
Msg-id alpine.DEB.2.21.1910300858100.10013@lancre
Whole thread Raw
In response to Re: Join Correlation Name  (Vik Fearing <vik.fearing@2ndquadrant.com>)
Responses Re: Join Correlation Name
List pgsql-hackers
Bonjour Vik,

> Is quoting the spec good enough?
> SQL:2016 Part 2 Foundation Section 7.10 <joined table>:

Ah, this is the one information I did not have when reviewing Peter's 
patch.

> <named columns join> ::=
>     USING <left paren> <join column list> <right paren> [ AS <join correlation name> ]
>
> <join correlation name> ::=
>     <correlation name>
>
> I think possibly what the spec says (and that neither my patch nor
> Peter's implements) is assigning the alias just to the <join column
> list>. 

I think you are right, the alias is only on the identical columns.

It solves the issue I raised about inaccessible attributes, and explains 
why it is only available with USING and no other join variants.

> So my original example query should actually be:
>
> SELECT a.x, b.y, j.z FROM a INNER JOIN b USING (z) AS j;

Yep, only z should be in j, it is really just about the USING clause.

-- 
Fabien.

pgsql-hackers by date:

Previous
From: Prabhat Sahu
Date:
Subject: Re: tableam vs. TOAST
Next
From: Fujii Masao
Date:
Subject: Re: Problem with synchronous replication