()
| 222 | |
| 223 | @pytest.mark.pandas |
| 224 | def test_empty_table_no_columns(): |
| 225 | df = pd.DataFrame() |
| 226 | empty = pa.Table.from_pandas(df, preserve_index=False) |
| 227 | _check_roundtrip(empty) |
| 228 | |
| 229 | |
| 230 | def test_write_nested_zero_length_array_chunk_failure(): |
nothing calls this directly
no test coverage detected