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
175c1ab7
Commit
175c1ab7
authored
Sep 06, 2007
by
dlenev@mockturtle.local
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make events.test more robust against timing issues.
parent
d55b2bd1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
mysql-test/t/events.test
mysql-test/t/events.test
+2
-1
No files found.
mysql-test/t/events.test
View file @
175c1ab7
...
...
@@ -487,7 +487,8 @@ create event закачка21 on schedule every 10 hour do select get_lock("test
--
echo
"Should have only 2 processes: the scheduler and the locked event"
let
$wait_condition
=
select
count
(
*
)
=
2
from
information_schema
.
processlist
where
(
(
state
like
'User lock%'
AND
info
like
'select get_lock%'
)
OR
(
command
=
'Daemon'
AND
user
=
'event_scheduler'
));
OR
(
command
=
'Daemon'
AND
user
=
'event_scheduler'
AND
state
=
'Waiting for next activation'
));
--
source
include
/
wait_condition
.
inc
select
/*3*/
user
,
host
,
db
,
command
,
state
,
info
...
...
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