goldmedal commented on code in PR #14255:
URL: https://github.com/apache/datafusion/pull/14255#discussion_r1942699530
##########
datafusion/sql/src/planner.rs:
##########
@@ -566,7 +569,9 @@ impl<'a, S: ContextProvider> SqlToRel<'a, S> {
| SQLDataType::MediumText
| SQLDataType::LongText
| SQLDataType::Bit(_)
- |SQLDataType::BitVarying(_)
+ | SQLDataType::BitVarying(_)
+ // BIG Query UDFs
Review Comment:
```suggestion
// BigQuery UDFs
```
##########
datafusion/sqllogictest/test_files/joins.slt:
##########
@@ -2623,6 +2623,10 @@ SELECT t1.c1, t2.c2 FROM test_partition_table t1 JOIN
test_partition_table t2 US
0 9
0 10
+# left_join_using_qualified (snowflake syntax)
+query error DataFusion error: This feature is not implemented: Invalid
identifier in USING clause\. Expected single identifier, got t2\.c2
+SELECT t1.c1, t2.c2 FROM test_partition_table t1 JOIN test_partition_table t2
USING (t2.c2) ORDER BY t2.c2;
Review Comment:
👍
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]