jorisvandenbossche commented on code in PR #41979:
URL: https://github.com/apache/arrow/pull/41979#discussion_r1629209143
##########
python/pyarrow/tests/test_pandas.py:
##########
@@ -4730,21 +4730,23 @@ def make_df_with_timestamps():
# Some of the milliseconds timestamps deliberately don't fit in the range
# that is possible with nanosecond timestamps.
df = pd.DataFrame({
- 'dateTimeMs': [
+ 'dateTimeMs': np.array([
Review Comment:
Have to remove this again to clean up. This was an attempt to create a
DataFrame with object dtype column, but it seems we still infer it anyway (so
added to `df['dateTimeMs'] = df['dateTimeMs'].astype('object')` below to
achieve that).
--
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]