(version)
| 353 | |
| 354 | |
| 355 | def test_buffer_bounds_error(version): |
| 356 | # ARROW-1676 |
| 357 | path = random_path() |
| 358 | TEST_FILES.append(path) |
| 359 | |
| 360 | for i in range(16, 256): |
| 361 | table = pa.Table.from_arrays( |
| 362 | [pa.array([None] + list(range(i)), type=pa.float64())], |
| 363 | names=["arr"] |
| 364 | ) |
| 365 | _check_arrow_roundtrip(table) |
| 366 | |
| 367 | |
| 368 | @pytest.mark.numpy |
nothing calls this directly
no test coverage detected