Dandandan commented on a change in pull request #1068:
URL: https://github.com/apache/arrow-datafusion/pull/1068#discussion_r720865004
##########
File path: datafusion/src/sql/planner.rs
##########
@@ -3440,7 +3453,7 @@ mod tests {
let sql = "SELECT order_id from orders EXCEPT SELECT order_id FROM
orders";
let err = logical_plan(sql).expect_err("query should have failed");
assert_eq!(
- "NotImplemented(\"Only UNION ALL is supported, found EXCEPT\")",
+ "NotImplemented(\"Only UNION ALL and UNION are supported, found
EXCEPT\")",
Review comment:
```suggestion
"NotImplemented(\"Only UNION ALL and UNION [DISTINCT] are
supported, found EXCEPT\")",
```
--
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]