HuSen8891 commented on code in PR #12467:
URL: https://github.com/apache/datafusion/pull/12467#discussion_r1766189044


##########
datafusion/common/src/dfschema.rs:
##########
@@ -412,17 +412,32 @@ impl DFSchema {
         }
     }
 
+    /// Check whether the column reference is ambiguous
+    pub fn check_ambiguous_name(

Review Comment:
   The column reference 't1.v1' is ambiguous in query.
   
   `select t1.v1 from t1 join t1 using(v1) cross join (select struct('foo' as 
v1) as t1);` 
   
   Fix it later and also add to test case.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to