MCPcopy Create free account
hub / github.com/apache/arrow / test_buffer_bounds_error

Function test_buffer_bounds_error

python/pyarrow/tests/test_feather.py:348–358  ·  view source on GitHub ↗
(version)

Source from the content-addressed store, hash-verified

346
347
348def test_buffer_bounds_error(version):
349 # ARROW-1676
350 path = random_path()
351 TEST_FILES.append(path)
352
353 for i in range(16, 256):
354 table = pa.Table.from_arrays(
355 [pa.array([None] + list(range(i)), type=pa.float64())],
356 names=["arr"]
357 )
358 _check_arrow_roundtrip(table)
359
360
361@pytest.mark.numpy

Callers

nothing calls this directly

Calls 5

random_pathFunction · 0.85
listFunction · 0.85
_check_arrow_roundtripFunction · 0.85
appendMethod · 0.45
arrayMethod · 0.45

Tested by

no test coverage detected