kosiew commented on code in PR #19884:
URL: https://github.com/apache/datafusion/pull/19884#discussion_r2729947388
##########
datafusion/sql/src/statement.rs:
##########
@@ -1070,6 +1070,13 @@ impl<S: ContextProvider> SqlToRel<'_, S> {
plan_err!("Multiple tables in UPDATE SET FROM not yet
supported")?;
}
let update_from = from_clauses.and_then(|mut f| f.pop());
+
+ // UPDATE ... FROM is currently not working
+ // TODO fix https://github.com/apache/datafusion/issues/19950
+ if update_from.is_some() {
+ return not_impl_err!("UPDATE ... FROM is not supported");
Review Comment:
👍
Unified in
https://github.com/apache/datafusion/pull/19884/commits/e9bf8f3fe0b2fe46d499103a7be8fb35cda1083d
--
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]