File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
core/tests/custom_sources_cases Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff 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 ! (
Original file line number Diff line number Diff 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
7172query error DataFusion error: This feature is not implemented: UPDATE ... FROM is not supported
7273explain 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
You can’t perform that action at this time.
0 commit comments