This is an automated email from the ASF dual-hosted git repository.

alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


The following commit(s) were added to refs/heads/main by this push:
     new 372204e1ed fix write_partitioned_parquet_results bug (#9360)
372204e1ed is described below

commit 372204e1ed71ee600553e806885cdd7f596e168f
Author: junxiangMu <[email protected]>
AuthorDate: Tue Feb 27 20:40:08 2024 +0800

    fix write_partitioned_parquet_results bug (#9360)
---
 datafusion/core/tests/dataframe/mod.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/datafusion/core/tests/dataframe/mod.rs 
b/datafusion/core/tests/dataframe/mod.rs
index ee84200417..abe5fd2918 100644
--- a/datafusion/core/tests/dataframe/mod.rs
+++ b/datafusion/core/tests/dataframe/mod.rs
@@ -1975,7 +1975,7 @@ async fn write_partitioned_parquet_results() -> 
Result<()> {
         "+-----+-----+",
     ];
 
-    assert_batches_eq!(expected, &results);
+    assert_batches_sorted_eq!(expected, &results);
 
     Ok(())
 }

Reply via email to