1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Did some SP test style changes and added explanatory comments,

and removed a have_innodb.inc inclusion which was left by mistake
in an earlier change.
This commit is contained in:
pem@mysql.comhem.se
2005-03-18 14:33:46 +01:00
parent d53423383b
commit 00c220eab5
5 changed files with 80 additions and 30 deletions

View File

@ -1,22 +1,22 @@
drop procedure if exists sp1;
drop procedure if exists bug8850|
create table t1 (a int) engine=innodb|
create procedure sp1 ()
create procedure bug8850()
begin
truncate table t1; insert t1 values (1); rollback;
end|
set autocommit=0;
insert t1 values (2);
call sp1();
set autocommit=0|
insert t1 values (2)|
call bug8850()|
ERROR HY000: Can't execute the given command because you have active locked tables or an active transaction
commit;
select * from t1;
commit|
select * from t1|
a
2
call sp1();
call bug8850()|
ERROR HY000: Can't execute the given command because you have active locked tables or an active transaction
set autocommit=1;
select * from t1;
set autocommit=1|
select * from t1|
a
2
drop table t1;
drop procedure sp1;
drop table t1|
drop procedure bug8850|