(tempdir, dataset_reader, pickle_module)
| 2441 | |
| 2442 | @pytest.mark.parquet |
| 2443 | def 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 |
nothing calls this directly
no test coverage detected