Skip to content

Commit 4698c5f

Browse files
committed
Add TODO comments for fixing unsupported UPDATE ... FROM syntax
1 parent 354cff3 commit 4698c5f

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

datafusion/core/tests/custom_sources_cases/dml_planning.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -751,6 +751,7 @@ async fn test_update_from_drops_non_target_predicates() -> Result<()> {
751751
.await;
752752

753753
// Verify UPDATE ... FROM is rejected with appropriate error
754+
// TODO fix https://github.com/apache/datafusion/issues/19950
754755
assert!(result.is_err());
755756
let err = result.unwrap_err();
756757
assert!(

datafusion/sqllogictest/test_files/update.slt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ physical_plan_error This feature is not implemented: Physical plan does not supp
6868

6969
# set from other table
7070
# UPDATE ... FROM is currently unsupported
71+
# TODO fix https://github.com/apache/datafusion/issues/19950
7172
query error DataFusion error: This feature is not implemented: UPDATE ... FROM is not supported
7273
explain update t1 set b = t2.b, c = t2.a, d = 1 from t2 where t1.a = t2.a and t1.b > 'foo' and t2.c > 1.0;
7374

0 commit comments

Comments
 (0)