You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by xu...@apache.org on 2022/11/24 10:23:04 UTC

[arrow-datafusion] branch master updated: minor: fix typos in test names (#4344)

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

xudong963 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 22fdbcfd0 minor: fix typos in test names (#4344)
22fdbcfd0 is described below

commit 22fdbcfd09f4e55057713892b5d632ab12761d5e
Author: Andrew Lamb <an...@nerdnetworks.org>
AuthorDate: Thu Nov 24 05:22:58 2022 -0500

    minor: fix typos in test names (#4344)
---
 datafusion/sql/src/planner.rs | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/datafusion/sql/src/planner.rs b/datafusion/sql/src/planner.rs
index fc2683036..4e4ca02f6 100644
--- a/datafusion/sql/src/planner.rs
+++ b/datafusion/sql/src/planner.rs
@@ -5957,10 +5957,10 @@ mod tests {
     }
 
     #[test]
-    fn test_ambiguous_coulmn_referece_in_on_join() {
-        let sql = "select p1.id, p1.age, p2.id 
-            from person as p1 
-            INNER JOIN person as p2 
+    fn test_ambiguous_column_references_in_on_join() {
+        let sql = "select p1.id, p1.age, p2.id
+            from person as p1
+            INNER JOIN person as p2
             ON id = 1";
 
         let expected =
@@ -5974,10 +5974,10 @@ mod tests {
     }
 
     #[test]
-    fn test_ambiguous_coulmn_referece_with_in_using_join() {
-        let sql = "select p1.id, p1.age, p2.id 
-            from person as p1 
-            INNER JOIN person as p2 
+    fn test_ambiguous_column_references_with_in_using_join() {
+        let sql = "select p1.id, p1.age, p2.id
+            from person as p1
+            INNER JOIN person as p2
             using(id)";
 
         let expected = "Projection: p1.id, p1.age, p2.id\