()
| 1316 | |
| 1317 | @pytest.mark.pandas |
| 1318 | def test_slice_zero_length_table(): |
| 1319 | # ARROW-7907: a segfault on this code was fixed after 0.16.0 |
| 1320 | table = pa.table({'a': pa.array([], type=pa.timestamp('us'))}) |
| 1321 | table_slice = table.slice(0, 0) |
| 1322 | table_slice.to_pandas() |
| 1323 | |
| 1324 | table = pa.table({'a': pa.chunked_array([], type=pa.string())}) |
| 1325 | table.to_pandas() |
| 1326 | |
| 1327 | |
| 1328 | @pytest.mark.numpy |
nothing calls this directly
no test coverage detected