Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 1e1eb12

Browse files
committed
Improve comment
Clarify that RangeTblEntry.lateral reflects whether LATERAL was specified in the statement (as opposed to whether lateralness is implicit). Also, the list of applicable entry types was incomplete. Reviewed-by: Andrew Dunstan <andrew@dunslane.net> Discussion: https://www.postgresql.org/message-id/flat/4b27fc50-8cd6-46f5-ab20-88dbaadca645@eisentraut.org
1 parent 83d8065 commit 1e1eb12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/include/nodes/parsenodes.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1197,7 +1197,7 @@ typedef struct RangeTblEntry
11971197
*/
11981198
Alias *alias; /* user-written alias clause, if any */
11991199
Alias *eref; /* expanded reference names */
1200-
bool lateral; /* subquery, function, or values is LATERAL? */
1200+
bool lateral; /* was LATERAL specified? */
12011201
bool inFromCl; /* present in FROM clause? */
12021202
List *securityQuals; /* security barrier quals to apply, if any */
12031203
} RangeTblEntry;

0 commit comments

Comments
 (0)