Skip to content

Commit

Permalink
document upstream issue for timestamp[s] xfail test
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-J-Ward committed Sep 27, 2024
1 parent 7578e4b commit 587e94e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion python/datafusion/tests/test_sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,10 +382,13 @@ def test_udf(
pa.array([b"1111", b"2222", b"3333"], pa.binary(4), _null_mask),
id="binary4",
),
# `timestamp[s]` does not roundtrip for pyarrow.parquet: https://github.com/apache/arrow/issues/41382
pytest.param(
helpers.data_datetime("s"),
id="datetime_s",
marks=pytest.mark.xfail(reason="Mismatch in format"),
marks=pytest.mark.xfail(
reason="pyarrow.parquet does not support timestamp[s] roundtrips"
),
),
pytest.param(
helpers.data_datetime("ms"),
Expand Down

0 comments on commit 587e94e

Please sign in to comment.