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
{{ message }}
This repository has been archived by the owner on Jun 18, 2024. It is now read-only.
This is a thread for collecting cases where scanCols is wrongly computed for UPDATE.
Case 1:
droptable if exists t1;
createtablet1(a int, b int);
insert into t1 values(2,1);
analyze t1;
droptable if exists t2;
createtablet2(a int, b int, c int);
insert into t2 select i, i%2, i from generate_series(1,5)i;
insert into t2 select i, i, i from generate_series(1,5)i;
analyze t2;
UPDATE t2 SET b =2WHERE a = (SELECT a FROM t1);
The text was updated successfully, but these errors were encountered:
This is a thread for collecting cases where scanCols is wrongly computed for UPDATE.
Case 1:
The text was updated successfully, but these errors were encountered: