snuyanzin commented on code in PR #28290:
URL: https://github.com/apache/flink/pull/28290#discussion_r3448168607
##########
flink-table/flink-sql-parser/src/main/codegen/templates/Parser.jj:
##########
@@ -4891,6 +4890,11 @@ SqlLiteral DateTimeLiteral() :
<TIME> { s = span(); } p = SimpleStringLiteral() {
return SqlLiteral.createUnknown("TIME", p, s.end(this));
}
+|
+ LOOKAHEAD(2)
+ <UUID> { s = span(); } p = SimpleStringLiteral() {
Review Comment:
new type , however doesn't go further without support in FlinkTypeFactory.
Queries with uuid function seems still continue working
--
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]