snuyanzin commented on code in PR #28316:
URL: https://github.com/apache/flink/pull/28316#discussion_r3487952173
##########
flink-table/flink-sql-parser/src/main/codegen/templates/Parser.jj:
##########
@@ -7957,6 +8003,7 @@ SqlBinaryOperator BinaryRowOperator() :
{
// <IN> is handled as a special case
<EQ> { return SqlStdOperatorTable.EQUALS; }
+| <LEFTSHIFT> { return SqlStdOperatorTable.BIT_LEFT_SHIFT; }
Review Comment:
example of usage in Calcite
```sql
SELECT CAST(2 AS SMALLINT) << CAST(3 AS INTEGER) AS cast_shift;
```
--
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]