Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
1.1.5
-
None
-
2018-14, 2018-15
Description
similar to MCOL-1156, which is fxied in 1.1.4 but still exist, if a join with innodb come in play.
Testcase:
MariaDB [dtest]> create table t_mcs (id int(11)) engine=Columnstore; |
Query OK, 0 rows affected (0.53 sec) |
|
MariaDB [dtest]> create table t_innodb (id int(11)) engine=InnoDB; |
Query OK, 0 rows affected (0.02 sec) |
|
MariaDB [dtest]> insert into t_mcs (id) values(1),(2),(3); |
Query OK, 3 rows affected, 1 warning (0.19 sec) |
Records: 3 Duplicates: 0 Warnings: 1 |
|
MariaDB [dtest]> insert into t_innodb (id) values(1),(2),(3); |
Query OK, 3 rows affected (0.01 sec) |
Records: 3 Duplicates: 0 Warnings: 0 |
|
MariaDB [dtest]> delete t_mcs from t_mcs inner join t_innodb using(id);
|
Query OK, 0 rows affected, 3 warnings (0.29 sec) |
|
MariaDB [dtest]> select * from t_mcs;
|
Empty set, 1 warning (0.02 sec) |
Attachments
Issue Links
- blocks
-
MCOL-1156 Incorrect 0 row(s) affected on delete
- Closed