mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
sp.test, sp.result:
transactional test removed sp_trans.test, sp_trans.result: new file mysql-test/r/sp.result: transactional test removed mysql-test/t/sp.test: transactional test removed
This commit is contained in:
22
mysql-test/r/sp_trans.result
Normal file
22
mysql-test/r/sp_trans.result
Normal file
@ -0,0 +1,22 @@
|
||||
drop procedure if exists sp1;
|
||||
create table t1 (a int) engine=innodb|
|
||||
create procedure sp1 ()
|
||||
begin
|
||||
truncate table t1; insert t1 values (1); rollback;
|
||||
end|
|
||||
set autocommit=0;
|
||||
insert t1 values (2);
|
||||
call sp1();
|
||||
ERROR HY000: Can't execute the given command because you have active locked tables or an active transaction
|
||||
commit;
|
||||
select * from t1;
|
||||
a
|
||||
2
|
||||
call sp1();
|
||||
ERROR HY000: Can't execute the given command because you have active locked tables or an active transaction
|
||||
set autocommit=1;
|
||||
select * from t1;
|
||||
a
|
||||
2
|
||||
drop table t1;
|
||||
drop procedure sp1;
|
Reference in New Issue
Block a user