Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
9e9cd68f
Commit
9e9cd68f
authored
Mar 13, 2008
by
davi@endora.local
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.1-runtime
into mysql.com:/Users/davi/mysql/mysql-5.1-runtime
parents
e1cd9429
c964c0b2
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
122 additions
and
71 deletions
+122
-71
mysql-test/r/flush_read_lock_kill.result
mysql-test/r/flush_read_lock_kill.result
+2
-0
mysql-test/r/kill.result
mysql-test/r/kill.result
+2
-0
mysql-test/r/sp_notembedded.result
mysql-test/r/sp_notembedded.result
+31
-5
mysql-test/t/flush_read_lock_kill.test
mysql-test/t/flush_read_lock_kill.test
+5
-0
mysql-test/t/kill.test
mysql-test/t/kill.test
+7
-0
mysql-test/t/sp_notembedded.test
mysql-test/t/sp_notembedded.test
+75
-66
No files found.
mysql-test/r/flush_read_lock_kill.result
View file @
9e9cd68f
set @old_concurrent_insert= @@global.concurrent_insert;
set @@global.concurrent_insert= 0;
drop table if exists t1;
create table t1 (kill_id int);
...
...
@@ -8,3 +9,4 @@ select ((@id := kill_id) - kill_id) from t1;
0
kill connection @id;
drop table t1;
set @@global.concurrent_insert= @old_concurrent_insert;
mysql-test/r/kill.result
View file @
9e9cd68f
set @old_concurrent_insert= @@global.concurrent_insert;
set @@global.concurrent_insert= 0;
drop table if exists t1, t2, t3;
create table t1 (kill_id int);
...
...
@@ -137,3 +138,4 @@ KILL CONNECTION_ID();
# of close of the connection socket
SELECT 1;
Got one of the listed errors
set @@global.concurrent_insert= @old_concurrent_insert;
mysql-test/r/sp_notembedded.result
View file @
9e9cd68f
set @old_concurrent_insert= @@global.concurrent_insert;
set @@global.concurrent_insert= 0;
drop table if exists t1,t3;
drop procedure if exists bug4902|
create procedure bug4902()
...
...
@@ -17,11 +19,11 @@ begin
show processlist;
end|
call bug4902_2()|
Id User Host db Command Time State Info
# root localhost test Query # NULL show processlist
show warnings|
Level Code Message
call bug4902_2()|
Id User Host db Command Time State Info
# root localhost test Query # NULL show processlist
show warnings|
Level Code Message
drop procedure bug4902_2|
drop table if exists t1|
create table t1 (
...
...
@@ -68,7 +70,7 @@ c
2
show status like 'Qcache_hits'|
Variable_name Value
Qcache_hits
2
Qcache_hits
0
set global query_cache_size = @x|
flush status|
flush query cache|
...
...
@@ -208,3 +210,27 @@ GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
drop user mysqltest_1@localhost;
drop procedure 15298_1;
drop procedure 15298_2;
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;
set @@global.concurrent_insert= @old_concurrent_insert;
mysql-test/t/flush_read_lock_kill.test
View file @
9e9cd68f
...
...
@@ -14,6 +14,7 @@
# Disable concurrent inserts to avoid test failures when reading the
# connection id which was inserted into a table by another thread.
set
@
old_concurrent_insert
=
@@
global
.
concurrent_insert
;
set
@@
global
.
concurrent_insert
=
0
;
connect
(
con1
,
localhost
,
root
,,);
...
...
@@ -58,3 +59,7 @@ reap;
connection
con2
;
drop
table
t1
;
connection
default
;
# Restore global concurrent_insert value
set
@@
global
.
concurrent_insert
=
@
old_concurrent_insert
;
mysql-test/t/kill.test
View file @
9e9cd68f
...
...
@@ -8,6 +8,7 @@
# Disable concurrent inserts to avoid test failures when reading the
# connection id which was inserted into a table by another thread.
set
@
old_concurrent_insert
=
@@
global
.
concurrent_insert
;
set
@@
global
.
concurrent_insert
=
0
;
connect
(
con1
,
localhost
,
root
,,);
...
...
@@ -326,3 +327,9 @@ KILL CONNECTION_ID();
--
echo
# of close of the connection socket
--
error
2013
,
2006
SELECT
1
;
--
connection
default
###########################################################################
# Restore global concurrent_insert value. Keep in the end of the test file.
set
@@
global
.
concurrent_insert
=
@
old_concurrent_insert
;
mysql-test/t/sp_notembedded.test
View file @
9e9cd68f
# Can't test with embedded server
--
source
include
/
not_embedded
.
inc
# Disable concurrent inserts to avoid test failures
set
@
old_concurrent_insert
=
@@
global
.
concurrent_insert
;
set
@@
global
.
concurrent_insert
=
0
;
--
sleep
2
--
disable_warnings
drop
table
if
exists
t1
,
t3
;
--
enable_warnings
...
...
@@ -39,10 +41,14 @@ create procedure bug4902_2()
begin
show
processlist
;
end
|
--
replace_column
1
# 6 # 3 localhost
--
disable_result_log
call
bug4902_2
()
|
--
replace_column
1
# 6 # 3 localhost
--
enable_result_log
show
warnings
|
--
disable_result_log
call
bug4902_2
()
|
--
enable_result_log
show
warnings
|
drop
procedure
bug4902_2
|
#
...
...
@@ -268,69 +274,72 @@ drop procedure 15298_1;
drop
procedure
15298_2
;
#
#
Test case disabled due to Bug#34891: sp_notembedded.test fails sporadically.
#
Bug#29936 Stored Procedure DML ignores low_priority_updates setting
#
# #
# # Bug#29936 Stored Procedure DML ignores low_priority_updates setting
# #
#
# --disable_warnings
# drop table if exists t1;
# drop procedure if exists p1;
# --enable_warnings
#
# create table t1 (value varchar(15));
# create procedure p1() update t1 set value='updated' where value='old';
#
# # load the procedure into sp cache and execute once
# call p1();
#
# insert into t1 (value) values ("old");
#
# connect (rl_holder, localhost, root,,);
# connect (rl_acquirer, localhost, root,,);
# connect (rl_contender, localhost, root,,);
# connect (rl_wait, localhost, root,,);
#
# connection rl_holder;
# select get_lock('b26162',120);
#
# connection rl_acquirer;
# --send select 'rl_acquirer', value from t1 where get_lock('b26162',120);
#
# # we must wait till this select opens and locks the tables
# connection rl_wait;
# let $wait_condition=
# select count(*) = 1 from information_schema.processlist
# where state = "User lock" and
# info = "select 'rl_acquirer', value from t1 where get_lock('b26162',120)";
# --source include/wait_condition.inc
#
# connection default;
# set session low_priority_updates=on;
# --send call p1();
#
# connection rl_wait;
# let $wait_condition=
# select count(*) = 1 from information_schema.processlist
# where state = "Locked" and
# info = "update t1 set value='updated' where value='old'";
# --source include/wait_condition.inc
#
# connection rl_contender;
# select 'rl_contender', value from t1;
#
# connection rl_holder;
# select release_lock('b26162');
--
disable_warnings
drop
table
if
exists
t1
;
drop
procedure
if
exists
p1
;
--
enable_warnings
create
table
t1
(
value
varchar
(
15
));
create
procedure
p1
()
update
t1
set
value
=
'updated'
where
value
=
'old'
;
# load the procedure into sp cache and execute once
call
p1
();
insert
into
t1
(
value
)
values
(
"old"
);
connect
(
rl_holder
,
localhost
,
root
,,);
connect
(
rl_acquirer
,
localhost
,
root
,,);
connect
(
rl_contender
,
localhost
,
root
,,);
connect
(
rl_wait
,
localhost
,
root
,,);
connection
rl_holder
;
select
get_lock
(
'b26162'
,
120
);
connection
rl_acquirer
;
--
send
select
'rl_acquirer'
,
value
from
t1
where
get_lock
(
'b26162'
,
120
);
# we must wait till this select opens and locks the tables
connection
rl_wait
;
let
$wait_condition
=
select
count
(
*
)
=
1
from
information_schema
.
processlist
where
state
=
"User lock"
and
info
=
"select 'rl_acquirer', value from t1 where get_lock('b26162',120)"
;
--
source
include
/
wait_condition
.
inc
connection
default
;
set
session
low_priority_updates
=
on
;
--
send
call
p1
();
connection
rl_wait
;
let
$wait_condition
=
select
count
(
*
)
=
1
from
information_schema
.
processlist
where
state
=
"Locked"
and
info
=
"update t1 set value='updated' where value='old'"
;
--
source
include
/
wait_condition
.
inc
connection
rl_contender
;
select
'rl_contender'
,
value
from
t1
;
connection
rl_holder
;
select
release_lock
(
'b26162'
);
connection
rl_acquirer
;
--
reap
connection
default
;
--
reap
disconnect
rl_holder
;
disconnect
rl_acquirer
;
disconnect
rl_wait
;
drop
procedure
p1
;
drop
table
t1
;
set
session
low_priority_updates
=
default
;
#
# connection rl_acquirer;
# --reap
# connection default;
# --reap
# Restore global concurrent_insert value. Keep in the end of the test file.
#
# disconnect rl_holder;
# disconnect rl_acquirer;
# disconnect rl_wait;
# drop procedure p1;
# drop table t1;
# set session low_priority_updates=default;
set
@@
global
.
concurrent_insert
=
@
old_concurrent_insert
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment