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

Function test_deterministic_row_order

python/pyarrow/tests/test_dataset.py:2443–2448  ·  view source on GitHub ↗
(tempdir, dataset_reader, pickle_module)

Source from the content-addressed store, hash-verified

2441
2442@pytest.mark.parquet
2443def test_deterministic_row_order(tempdir, dataset_reader, pickle_module):
2444 # ARROW-8447 Ensure that dataset.to_table (and Scanner::ToTable) returns a
2445 # deterministic row ordering. This is achieved by constructing a single
2446 # parquet file with one row per RowGroup.
2447 table, path = _create_single_file(tempdir, row_group_size=1)
2448 _check_dataset_from_path(path, table, dataset_reader, pickle_module)
2449
2450
2451@pytest.mark.parquet

Callers

nothing calls this directly

Calls 2

_create_single_fileFunction · 0.85
_check_dataset_from_pathFunction · 0.85

Tested by

no test coverage detected