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

Function test_read_single_file_list

python/pyarrow/tests/parquet/test_dataset.py:495–502  ·  view source on GitHub ↗
(tempdir)

Source from the content-addressed store, hash-verified

493
494@pytest.mark.pandas
495def test_read_single_file_list(tempdir):
496 data_path = str(tempdir / 'data.parquet')
497
498 table = pa.table({"a": [1, 2, 3]})
499 _write_table(table, data_path)
500
501 result = pq.ParquetDataset([data_path]).read()
502 assert result.equals(table)
503
504
505@pytest.mark.pandas

Callers

nothing calls this directly

Calls 3

_write_tableFunction · 0.90
equalsMethod · 0.80
readMethod · 0.45

Tested by

no test coverage detected