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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
bd4e8754
Commit
bd4e8754
authored
Feb 06, 2008
by
davi@mysql.com/endora.local
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug#34311 main.lock_multi.test fails
Re-enable the test case for Bug 30331.
parent
a951fb2c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
32 deletions
+37
-32
mysql-test/r/lock_multi.result
mysql-test/r/lock_multi.result
+10
-0
mysql-test/t/lock_multi.test
mysql-test/t/lock_multi.test
+27
-32
No files found.
mysql-test/r/lock_multi.result
View file @
bd4e8754
...
@@ -143,4 +143,14 @@ connection: default
...
@@ -143,4 +143,14 @@ connection: default
flush tables;
flush tables;
unlock tables;
unlock tables;
drop table t1;
drop table t1;
drop table if exists t1,t2;
create table t1 (a int);
flush status;
lock tables t1 read;
insert into t1 values(1);;
unlock tables;
drop table t1;
select @tlwa < @tlwb;
@tlwa < @tlwb
1
End of 5.1 tests
End of 5.1 tests
mysql-test/t/lock_multi.test
View file @
bd4e8754
...
@@ -440,38 +440,33 @@ disconnect flush;
...
@@ -440,38 +440,33 @@ disconnect flush;
drop
table
t1
;
drop
table
t1
;
#
#
# Bug#30331: Table_locks_waited shows inaccurate values
#
#
# This test case was disabled due to Bug#34311: main.lock_multy.test fails.
#
--
disable_warnings
# #
drop
table
if
exists
t1
,
t2
;
# # Bug#30331: Table_locks_waited shows inaccurate values
--
enable_warnings
# #
create
table
t1
(
a
int
);
#
flush
status
;
# --disable_warnings
lock
tables
t1
read
;
# drop table if exists t1,t2;
let
$tlwa
=
`show status like 'Table_locks_waited'`
;
# --enable_warnings
connect
(
waiter
,
localhost
,
root
,,);
#
connection
waiter
;
# create table t1 (a int);
--
send
insert
into
t1
values
(
1
);
# flush status;
connection
default
;
# lock tables t1 read;
let
$wait_condition
=
# let $tlwa= `show status like 'Table_locks_waited'`;
select
count
(
*
)
=
1
from
information_schema
.
processlist
# connect (waiter,localhost,root,,);
where
state
=
"Locked"
and
info
=
"insert into t1 values(1)"
;
# connection waiter;
--
source
include
/
wait_condition
.
inc
# --send insert into t1 values(1);
let
$tlwb
=
`show status like 'Table_locks_waited'`
;
# connection default;
unlock
tables
;
# let $wait_condition=
drop
table
t1
;
# select count(*) = 1 from information_schema.processlist
disconnect
waiter
;
# where state = "Locked" and info = "insert into t1 values(1)";
connection
default
;
# --source include/wait_condition.inc
--
disable_query_log
# let $tlwb= `show status like 'Table_locks_waited'`;
eval
SET
@
tlwa
=
SUBSTRING_INDEX
(
'$tlwa'
,
' '
,
-
1
);
# unlock tables;
eval
SET
@
tlwb
=
SUBSTRING_INDEX
(
'$tlwb'
,
' '
,
-
1
);
# drop table t1;
--
enable_query_log
# disconnect waiter;
select
@
tlwa
<
@
tlwb
;
# connection default;
# --disable_query_log
# eval SET @tlwa= SUBSTRING_INDEX('$tlwa', ' ', -1);
# eval SET @tlwb= SUBSTRING_INDEX('$tlwb', ' ', -1);
# --enable_query_log
# select @tlwa < @tlwb;
--
echo
End
of
5.1
tests
--
echo
End
of
5.1
tests
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