jonkeane commented on code in PR #49619:
URL: https://github.com/apache/arrow/pull/49619#discussion_r3011876299
##########
r/src/r_to_arrow.cpp:
##########
@@ -93,6 +93,8 @@ RVectorType GetVectorType(SEXP x) {
return FACTOR;
} else if (Rf_inherits(x, "Date")) {
return DATE_INT;
+ } else if (Rf_inherits(x, "POSIXct")) {
+ return POSIXCT;
Review Comment:
Oh, huh I wonder if this type is new? Or maybe I "just" forgot about it when
I made these changes?
--
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]