Github user twalthr commented on a diff in the pull request:
https://github.com/apache/flink/pull/5202#discussion_r160687024
--- Diff:
flink-libraries/flink-table/src/main/scala/org/apache/flink/table/codegen/calls/FunctionGenerator.scala
---
@@ -414,6 +414,34 @@ object FunctionGenerator {
DOUBLE_TYPE_INFO,
BuiltInMethods.LOG_WITH_BASE)
+ addSqlFunctionMethod(
--- End diff --
Shift operations are core binary operators. I would not add them here but
in `ScalarOperators`. Maybe we can already reuse `generateArithmeticOperator`.
---