This is an automated email from the ASF dual-hosted git repository. jark pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/flink.git.
from 0e4e605 [FLINK-14858][table-planner] Wrong "if" statement in SqlToOperationConverter add f868d3a [FLINK-11935][table-planner][table-planner-blink] Remove DateTimeUtils from legacy planner and blink planner add 25f87ec [FLINK-11935][table-planner] Fix cast timestamp/date to string to avoid Gregorian cutover add 26a9a4c [FLINK-11935][table-planner] Fix unixDateCeil in Flink since CALCITE-3199 is not fixed in avatica-1.15.0 add 827e450 [FLINK-11935][table-planner-blink] Fix cast timestamp to string and vice-versa to avoid Gregorian cutover add f1a07cc [FLINK-11935][table-planner-blink] Fix unixDateCeil in blink planner since CALCITE-3199 is not fixed in avatica-1.15.0 No new revisions were added by this update. Summary of changes: .../apache/calcite/avatica/util/DateTimeUtils.java | 1045 -------------------- .../planner/codegen/calls/BuiltInMethods.scala | 5 + .../planner/codegen/calls/FunctionGenerator.scala | 4 +- .../planner/codegen/calls/ScalarOperatorGens.scala | 6 +- .../apache/calcite/avatica/util/DateTimeUtils.java | 1045 -------------------- .../flink/table/codegen/calls/BuiltInMethods.scala | 6 + .../table/codegen/calls/FunctionGenerator.scala | 4 +- .../table/codegen/calls/ScalarOperators.scala | 20 +- .../table/runtime/functions/ScalarFunctions.scala | 47 + .../table/expressions/ScalarFunctionsTest.scala | 28 +- .../table/expressions/TemporalTypesTest.scala | 10 +- .../UserDefinedScalarFunctionTest.scala | 2 +- .../table/runtime/functions/SqlDateTimeUtils.java | 6 + 13 files changed, 110 insertions(+), 2118 deletions(-) delete mode 100644 flink-table/flink-table-planner-blink/src/main/java/org/apache/calcite/avatica/util/DateTimeUtils.java delete mode 100644 flink-table/flink-table-planner/src/main/java/org/apache/calcite/avatica/util/DateTimeUtils.java