snuyanzin commented on code in PR #28170:
URL: https://github.com/apache/flink/pull/28170#discussion_r3408722324
##########
flink-table/flink-sql-parser/src/main/codegen/templates/Parser.jj:
##########
@@ -2018,7 +2027,9 @@ SqlLiteral JoinType() :
|
<INNER> <JOIN> { joinType = JoinType.INNER; }
|
- <LEFT> [ <OUTER> ] <JOIN> { joinType = JoinType.LEFT; }
+ <ASOF> <JOIN> { joinType = JoinType.ASOF; }
Review Comment:
ASOF join fails on `LogicalAsofJoin.copy(LogicalAsofJoin.java:145)`
so it happens before code gedegen
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]