shuai-xu commented on code in PR #9541:
URL: https://github.com/apache/incubator-gluten/pull/9541#discussion_r2084061345


##########
gluten-flink/runtime/src/main/java/org/apache/gluten/util/LogicalTypeConverter.java:
##########
@@ -58,6 +59,9 @@ public static Type toVLType(LogicalType logicalType) {
             return new io.github.zhztheplayer.velox4j.type.DecimalType(
                     decimalType.getPrecision(),
                     decimalType.getScale());
+        } else if (logicalType instanceof DayTimeIntervalType) {
+            // TODO: it seems interval now can be used as bigint for nexmark.
+            return new io.github.zhztheplayer.velox4j.type.BigIntType();

Review Comment:
   IntervalDayTimeType can not be cast to BigIntType now in velox. Change it to 
BigIntType temporary, I will assgin this issuse to others to fix it.



-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to