diff options
author | unknown <davi@moksha.local> | 2007-09-05 15:03:02 -0300 |
---|---|---|
committer | unknown <davi@moksha.local> | 2007-09-05 15:03:02 -0300 |
commit | bfbe3350dde27a30e999a375228873a07880d5b4 (patch) | |
tree | 3b49434500f860228984002409f4b8a7e289bf4e /mysql-test/r/sp.result | |
parent | ddf8272b756314d49065845118b322080461a2cf (diff) | |
download | mariadb-git-bfbe3350dde27a30e999a375228873a07880d5b4.tar.gz |
The test case for Bug#29936 doesn't work with the embedded version,
the first query is not running while we are doing wait queries on
a second connection.
mysql-test/r/sp.result:
Remove test case result for Bug#29936, moving to sp_notembedded.result
mysql-test/r/sp_notembedded.result:
Test case result for Bug#29936, moved from sp.result
mysql-test/t/sp.test:
Remove test case for Bug#29936, moving to sp_notembedded.test
mysql-test/t/sp_notembedded.test:
Test case result for Bug#29936, moved from sp.test
Diffstat (limited to 'mysql-test/r/sp.result')
-rw-r--r-- | mysql-test/r/sp.result | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/mysql-test/r/sp.result b/mysql-test/r/sp.result index 2abff35b232..fd09701c125 100644 --- a/mysql-test/r/sp.result +++ b/mysql-test/r/sp.result @@ -6546,29 +6546,6 @@ DROP VIEW v1; DROP FUNCTION f1; DROP FUNCTION f2; DROP TABLE t1; -drop table if exists t1; -drop procedure if exists p1; -create table t1 (value varchar(15)); -create procedure p1() update t1 set value='updated' where value='old'; -call p1(); -insert into t1 (value) values ("old"); -select get_lock('b26162',120); -get_lock('b26162',120) -1 -select 'rl_acquirer', value from t1 where get_lock('b26162',120);; -set session low_priority_updates=on; -call p1();; -select 'rl_contender', value from t1; -rl_contender value -rl_contender old -select release_lock('b26162'); -release_lock('b26162') -1 -rl_acquirer value -rl_acquirer old -drop procedure p1; -drop table t1; -set session low_priority_updates=default; # Bug#13675. |