Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
1.2
-
None
Description
To reproduce:
create table t1 (c1 int) engine=columnstore; |
insert into t1 (c1) values(1); |
insert into t1 (c1) values(2); |
update t1 set c1 = c1 +1; |
Rows matched and Changed --> 0
Query OK, 2 rows affected (0.516 sec) |
Rows matched: 0 Changed: 0 Warnings: 0 |
The same testcase works with InnoDB
create table t1inno (c1 int) engine=columnstore; |
insert into t1inno (c1) values(1); |
insert into t1inno (c1) values(2); |
update t1inno set c1 = c1 +1; |
Query OK, 2 rows affected (0.056 sec) |
Rows matched: 2 Changed: 2 Warnings: 0 |