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

Function test_deterministic_row_order

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

Source from the content-addressed store, hash-verified

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