emkornfield commented on a change in pull request #7816:
URL: https://github.com/apache/arrow/pull/7816#discussion_r470941603
##########
File path: cpp/src/arrow/python/python_to_arrow.cc
##########
@@ -1328,6 +1357,10 @@ Status ConvertPySequence(PyObject* sequence_source,
PyObject* mask,
if (options.type == nullptr) {
RETURN_NOT_OK(InferArrowType(seq, mask, options.from_pandas, &real_type));
+ if (options.ignore_timezone && real_type->id() == Type::TIMESTAMP) {
+ const auto& ts_type = checked_cast<TimestampType&>(*real_type);
Review comment:
sorry, porbably just late, but not sure what you mean here.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]