MaxGekk commented on code in PR #49437:
URL: https://github.com/apache/spark/pull/49437#discussion_r1910177018


##########
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:
   ```suggestion
       } else if (dataType instanceof ArrayType) {
   ```



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