snuyanzin commented on code in PR #28170:
URL: https://github.com/apache/flink/pull/28170#discussion_r3409388567
##########
flink-table/flink-table-planner/src/main/java/org/apache/flink/table/planner/plan/nodes/exec/serde/RexNodeJsonDeserializer.java:
##########
@@ -253,12 +253,14 @@ private static RexNode deserializeSarg(
switch (sqlTypeName) {
case BOOLEAN:
return valueNode.booleanValue();
+ case FLOAT:
+ case DOUBLE:
+ case REAL:
+ return Double.parseDouble(valueNode.asText());
Review Comment:
Calcite now processes these types as Double
requires some changes to read old plans
--
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]