1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-17 09:41:06 +03:00
Files
mariadb-columnstore-engine/mysql/queries/nightly/srvswdev11/test297/bug5315.sql
2016-01-06 14:08:59 -06:00

14 lines
400 B
SQL
Executable File

drop table if exists trow;
create table trow(col1 int, col2 int) engine=infinidb;
insert into trow values(1,2),(3,4);
select * from trow;
update trow set col1 = 10;
select * from trow;
update trow set col1 = 11 where col2=20;
update trow set col1 = 11;
update trow set col1 = 12 where col2=20;
select * from trow;
delete from trow;
delete from trow where col2=20;
select * from trow;
drop table trow;