peter-toth commented on code in PR #51464:
URL: https://github.com/apache/spark/pull/51464#discussion_r2206638310


##########
sql/catalyst/src/main/java/org/apache/spark/sql/vectorized/ArrowColumnVector.java:
##########
@@ -182,6 +182,8 @@ void initAccessor(ValueVector vector) {
       accessor = new TimestampAccessor(timeStampMicroTZVector);
     } else if (vector instanceof TimeStampMicroVector timeStampMicroVector) {
       accessor = new TimestampNTZAccessor(timeStampMicroVector);
+    } else if (vector instanceof TimeNanoVector timeNanoVector) {

Review Comment:
   No, it isn't a stupid question. Arrow is used to stream data between connect 
server and clients: 
(https://spark.apache.org/docs/latest/spark-connect-overview.html#how-spark-connect-works)



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