You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
create table t1 (n integer, x integer);
create table t2 (a integer, b integer);
merge into t1 t1
using (select * from t2) t2
on t1.n = t2.a
when matched then
update set x = t2.b
when not matched then
insert (a, x) values (1, 2); -- "a" is not a field of t1
Submitted by: @asfernandes
Is related to QA347
create table t1 (n integer, x integer);
create table t2 (a integer, b integer);
merge into t1 t1
using (select * from t2) t2
on t1.n = t2.a
when matched then
update set x = t2.b
when not matched then
insert (a, x) values (1, 2); -- "a" is not a field of t1
Commits: 71bd20b
The text was updated successfully, but these errors were encountered: