Skip to content
Snippets Groups Projects
Unverified Commit eb825654 authored by tianyahui-python's avatar tianyahui-python Committed by GitHub
Browse files

fix autocommit test (#4690)

Approved by: @aressu1985
parent 58900489
No related branches found
No related tags found
No related merge requests found
......@@ -258,6 +258,8 @@ SELECT @@session.autocommit;
commit;
show databases like 'test_xx';
commit;
drop database test_xx;
-- Test explicit transaction rollback;
......@@ -423,7 +425,7 @@ update view_t6 set a=100000 where b=3000;
select * from view_t6;
delete from view_t6 where a=10;
select * from view_t6;
-- @bvt:issue#4598
-- @bvt:issue
drop database db;
......
......@@ -305,6 +305,8 @@ commit;
show databases like 'test_xx';
Database
test_xx
commit;
drop database test_xx;
drop database if exists db;
begin;
create database db;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment