Skip to content

Commit

Permalink
Remove LATERAL
Browse files Browse the repository at this point in the history
LATERAL keyword is used as table/subquery and join operation.

Needs special handling
  • Loading branch information
griffio committed Mar 27, 2024
1 parent 0cf610f commit 2c7c7d7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ STRING=('([^'])*'|\"([^\"])*\")
"HAVING" { return HAVING; }
"INDEXED" { return INDEXED; }
"NATURAL" { return NATURAL; }
"LATERAL" { return LATERAL; }
"LEFT" { return LEFT; }
"RIGHT" { return RIGHT; }
"FULL" { return FULL; }
Expand Down
1 change: 0 additions & 1 deletion core/src/main/kotlin/com/alecstrong/sql/psi/core/sql.bnf
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,6 @@ result_column ::= ( MULTIPLY
left_join_operator ::= LEFT
right_join_operator ::= RIGHT
full_join_operator ::= FULL
lateral_join_modifier ::= LATERAL

join_operator ::= ( COMMA
| [ NATURAL ] [ left_join_operator [ OUTER ] | INNER | CROSS ] JOIN )
Expand Down

0 comments on commit 2c7c7d7

Please sign in to comment.