We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8374b5e commit 1d99e93Copy full SHA for 1d99e93
tests/nested_pandas/nestedframe/test_io.py
@@ -466,3 +466,10 @@ def test_list_struct_partial_loading_error():
466
# Load in the example file
467
with pytest.raises(ValueError):
468
read_parquet("tests/list_struct_data/list_struct.parquet", columns=["lightcurve.hmjd"])
469
+
470
471
+def test_normal_loading_error():
472
+ """Test that making a normal naming mistake raises the normal pyarrow error."""
473
+ # Load in the example file
474
+ with pytest.raises(ValueError):
475
+ read_parquet("tests/test_data/nested.parquet", columns=["not_a_column"])
0 commit comments