---- dataframe::write_partitioned_parquet_results stdout ----
thread 'dataframe::write_partitioned_parquet_results' panicked at datafusion/core/tests/dataframe/mod.rs:1978:5:
assertion `left == right` failed:
expected:
[
"+-----+-----+",
"| c1 | c2 |",
"+-----+-----+",
"| abc | 123 |",
"| def | 456 |",
"+-----+-----+",
]
actual:
[
"+-----+-----+",
"| c1 | c2 |",
"+-----+-----+",
"| def | 456 |",
"| abc | 123 |",
"+-----+-----+",
]
Describe the bug
dataframe::write_partitioned_parquet_resultssometimes passes and sometimes failsThis test was recently added in #9316
To Reproduce
Example failure https://github.com/apache/arrow-datafusion/actions/runs/8063185942/job/22024675172
Expected behavior
I think we can just update the test to use
assert_batches_sorted_eqhttps://docs.rs/datafusion/latest/datafusion/macro.assert_batches_sorted_eq.html so that the ordering is normalizedAdditional context
No response