xiedeyantu commented on code in PR #4411:
URL: https://github.com/apache/calcite/pull/4411#discussion_r2150002347
##########
core/src/main/java/org/apache/calcite/rex/RexBuilder.java:
##########
@@ -1943,11 +1959,11 @@ public RexNode makeZeroRexNode(RelDataType type) {
.collect(Collectors.toList());
return makeCall(type, SqlStdOperatorTable.ROW, zeroFields);
default:
- return makeZeroLiteral(type);
+ return makeZeroValue(type);
}
}
- private static Comparable zeroValue(RelDataType type) {
+ private static Comparable<?> zeroValue(RelDataType type) {
Review Comment:
Does this need to be changed to `Comparable<?>`?
--
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]