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(a int, b int);
insert into t1 values(1,0),(2,0),(3,0),(4,0),(5,0);
WITH t AS (UPDATE t1 SET b=b+1 limit 4 returning *)
SELECT *
FROM t limit 1;
select * from t1;
The text was updated successfully, but these errors were encountered:
*Issue migrated from trac ticket # 887 www.kunlunbase.com *
component: computing nodes | priority: major
2022-07-08 18:22:40: smith created the issue
The text was updated successfully, but these errors were encountered: