pitrou commented on code in PR #41765:
URL: https://github.com/apache/arrow/pull/41765#discussion_r2017023426
##########
python/pyarrow/tests/parquet/test_data_types.py:
##########
@@ -521,3 +522,20 @@ def test_json_extension_type(storage_type):
table = pa.table([arr], names=["ext"])
_simple_table_roundtrip(table)
+
+
+def test_undefined_logical_type(parquet_test_datadir):
+ test_file = f"{parquet_test_datadir}/data/unknown-logical-type.parquet"
+ if not os.path.exists(test_file):
+ pytest.skip("submodule not yet updated")
Review Comment:
Well, look at the path:
```
E FileNotFoundError:
/Users/runner/work/arrow/arrow/cpp/submodules/parquet-testing/data/data/unknown-logical-type.parquet
```
--
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]