You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ag...@apache.org on 2022/05/13 16:28:49 UTC

[arrow-datafusion] branch master updated: Add ORDER BY clause to test (#2524)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 4dedf41b3 Add ORDER BY clause to test (#2524)
4dedf41b3 is described below

commit 4dedf41b3a5c9dd33b0c20249adadd30c7db2762
Author: Andy Grove <ag...@apache.org>
AuthorDate: Fri May 13 10:28:44 2022 -0600

    Add ORDER BY clause to test (#2524)
---
 datafusion/core/src/datasource/view.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/datafusion/core/src/datasource/view.rs b/datafusion/core/src/datasource/view.rs
index 2bb3b687b..3db76cee1 100644
--- a/datafusion/core/src/datasource/view.rs
+++ b/datafusion/core/src/datasource/view.rs
@@ -222,7 +222,7 @@ mod tests {
         assert_eq!(results[0].num_rows(), 2);
 
         let results = session_ctx
-            .sql("SELECT * FROM xyz JOIN lmn USING (column1)")
+            .sql("SELECT * FROM xyz JOIN lmn USING (column1) ORDER BY column2")
             .await?
             .collect()
             .await?;