()
| 1363 | |
| 1364 | @pytest.mark.pandas |
| 1365 | def test_slice_zero_length_table(): |
| 1366 | # ARROW-7907: a segfault on this code was fixed after 0.16.0 |
| 1367 | table = pa.table({'a': pa.array([], type=pa.timestamp('us'))}) |
| 1368 | table_slice = table.slice(0, 0) |
| 1369 | table_slice.to_pandas() |
| 1370 | |
| 1371 | table = pa.table({'a': pa.chunked_array([], type=pa.string())}) |
| 1372 | table.to_pandas() |
| 1373 | |
| 1374 | |
| 1375 | @pytest.mark.numpy |
nothing calls this directly
no test coverage detected