1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-15 22:22:17 +03:00
Files
mariadb-columnstore-engine/mysql/queries/working_dml/misc/bug3129.sql
2016-01-06 14:08:59 -06:00

11 lines
358 B
SQL

set autocommit=0;
select * from region where r_regionkey=1;
update region set r_comment='xxx' where r_regionkey=1;
select * from region where r_regionkey=1;
rollback;
select * from region where r_regionkey=1;
update region set r_comment='xxx' where r_regionkey=1;
select * from region where r_regionkey=1;
rollback;
select * from region where r_regionkey=1;