mirror of
https://github.com/postgres/postgres.git
synced 2025-10-18 04:29:09 +03:00
Fix misleading comment in RangeTblEntry
The comment describing join_using_alias incorrectly referred to the alias field as being defined "below", when it actually appears earlier in the RangeTblEntry struct. This patch fixes that. Author: Steve Lau <stevelauc@outlook.com> Reviewed-by: Chao Li <li.evan.chao@gmail.com> Discussion: https://postgr.es/m/TYWPR01MB10612B020C33FD08F729415CEB613A@TYWPR01MB10612.jpnprd01.prod.outlook.com
This commit is contained in:
@@ -1189,7 +1189,7 @@ typedef struct RangeTblEntry
|
||||
|
||||
/*
|
||||
* 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
|
||||
* is different from the alias field (above) in that it does not hide the
|
||||
* range variables of the tables being joined.
|
||||
*/
|
||||
Alias *join_using_alias pg_node_attr(query_jumble_ignore);
|
||||
|
Reference in New Issue
Block a user