From 587e94e0650099694384e263d55d9c15b303741c Mon Sep 17 00:00:00 2001 From: Michael-J-Ward Date: Fri, 27 Sep 2024 14:12:44 -0500 Subject: [PATCH] document upstream issue for timestamp[s] xfail test --- python/datafusion/tests/test_sql.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python/datafusion/tests/test_sql.py b/python/datafusion/tests/test_sql.py index 2a458abf..bd2ae58d 100644 --- a/python/datafusion/tests/test_sql.py +++ b/python/datafusion/tests/test_sql.py @@ -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"),