nastra commented on code in PR #49437: URL: https://github.com/apache/spark/pull/49437#discussion_r1910231591
########## sql/catalyst/src/main/java/org/apache/spark/sql/vectorized/ColumnarRow.java: ########## @@ -188,7 +188,9 @@ public Object get(int ordinal, DataType dataType) { return getInt(ordinal); } else if (dataType instanceof TimestampType) { return getLong(ordinal); - } else if (dataType instanceof ArrayType) { + } else if (dataType instanceof TimestampNTZType) { + return getLong(ordinal); + }else if (dataType instanceof ArrayType) { Review Comment: good catch, sorry I missed this -- 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: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org