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
c2197e0c
Commit
c2197e0c
authored
Jan 28, 2019
by
Oleksandr Byelkin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'merge-perfschema-5.6' into 10.0
parents
a3df9bca
1abdc0e4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
mysql-test/suite/perfschema/r/dml_setup_instruments.result
mysql-test/suite/perfschema/r/dml_setup_instruments.result
+3
-1
mysql-test/suite/perfschema/t/dml_setup_instruments.test
mysql-test/suite/perfschema/t/dml_setup_instruments.test
+4
-1
No files found.
mysql-test/suite/perfschema/r/dml_setup_instruments.result
View file @
c2197e0c
...
...
@@ -16,7 +16,9 @@ wait/synch/mutex/sql/LOCK_binlog_state YES YES
wait/synch/mutex/sql/LOCK_commit_ordered YES YES
select * from performance_schema.setup_instruments
where name like 'Wait/Synch/Rwlock/sql/%'
and name not in ('wait/synch/rwlock/sql/CRYPTO_dynlock_value::lock')
and name not in (
'wait/synch/rwlock/sql/CRYPTO_dynlock_value::lock',
'wait/synch/rwlock/sql/LOCK_named_pipe_full_access_group')
order by name limit 10;
NAME ENABLED TIMED
wait/synch/rwlock/sql/LOCK_dboptions YES YES
...
...
mysql-test/suite/perfschema/t/dml_setup_instruments.test
View file @
c2197e0c
...
...
@@ -22,10 +22,13 @@ select * from performance_schema.setup_instruments
order
by
name
limit
10
;
# CRYPTO_dynlock_value::lock is dependent on the build (SSL)
# LOCK_named_pipe_full_access_group is dependent on the build (Windows)
select
*
from
performance_schema
.
setup_instruments
where
name
like
'Wait/Synch/Rwlock/sql/%'
and
name
not
in
(
'wait/synch/rwlock/sql/CRYPTO_dynlock_value::lock'
)
and
name
not
in
(
'wait/synch/rwlock/sql/CRYPTO_dynlock_value::lock'
,
'wait/synch/rwlock/sql/LOCK_named_pipe_full_access_group'
)
order
by
name
limit
10
;
# COND_handler_count is dependent on the build (Windows only)
...
...
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