viirya commented on code in PR #216:
URL:
https://github.com/apache/arrow-datafusion-comet/pull/216#discussion_r1533089676
##########
common/src/main/scala/org/apache/spark/sql/comet/util/Utils.scala:
##########
@@ -69,6 +69,7 @@ object Utils {
case int: ArrowType.Int if int.getIsSigned && int.getBitWidth == 8 * 2 =>
ShortType
case int: ArrowType.Int if int.getIsSigned && int.getBitWidth == 8 * 4 =>
IntegerType
case int: ArrowType.Int if int.getIsSigned && int.getBitWidth == 8 * 8 =>
LongType
+ case int: ArrowType.Int if int.getBitWidth == 8 * 8 => LongType
Review Comment:
Yes, but I mean Spark will treat the actual UInt64 array as decimal one. For
example, it will call `getDecimal` on an UInt64 array, does it work?
--
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]