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
7e22a1d8
Commit
7e22a1d8
authored
Feb 16, 2016
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
5.6.29
parent
6bb292f1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
+5
-4
mysql-test/suite/perfschema/r/dml_setup_instruments.result
mysql-test/suite/perfschema/r/dml_setup_instruments.result
+1
-1
mysql-test/suite/perfschema/r/view_table_io.result
mysql-test/suite/perfschema/r/view_table_io.result
+1
-1
storage/perfschema/table_session_connect.cc
storage/perfschema/table_session_connect.cc
+3
-2
No files found.
mysql-test/suite/perfschema/r/dml_setup_instruments.result
View file @
7e22a1d8
...
...
@@ -36,6 +36,7 @@ where name like 'Wait/Synch/Cond/sql/%'
'wait/synch/cond/sql/DEBUG_SYNC::cond')
order by name limit 10;
NAME ENABLED TIMED
wait/synch/cond/sql/COND_connection_count YES YES
wait/synch/cond/sql/COND_flush_thread_cache YES YES
wait/synch/cond/sql/COND_manager YES YES
wait/synch/cond/sql/COND_queue_state YES YES
...
...
@@ -45,7 +46,6 @@ wait/synch/cond/sql/COND_thread_count YES YES
wait/synch/cond/sql/Delayed_insert::cond YES YES
wait/synch/cond/sql/Delayed_insert::cond_client YES YES
wait/synch/cond/sql/Event_scheduler::COND_state YES YES
wait/synch/cond/sql/Gtid_state YES YES
select * from performance_schema.setup_instruments
where name='Wait';
select * from performance_schema.setup_instruments
...
...
mysql-test/suite/perfschema/r/view_table_io.result
View file @
7e22a1d8
...
...
@@ -52,7 +52,7 @@ insert into marker set a = 1;
optimize table test.v1;
Table Op Msg_type Msg_text
test.v1 optimize Error 'test.v1' is not BASE TABLE
test.v1 optimize
error Corrupt
test.v1 optimize
status Operation failed
insert into marker set a = 1;
select * from test.v1;
a b
...
...
storage/perfschema/table_session_connect.cc
View file @
7e22a1d8
/* Copyright (c) 2008, 201
3
, Oracle and/or its affiliates. All rights reserved.
/* Copyright (c) 2008, 201
5
, Oracle and/or its affiliates. All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
...
...
@@ -251,7 +251,8 @@ void table_session_connect::make_row(PFS_thread *pfs, uint ordinal)
&
m_row
.
m_attr_value_length
))
{
/* we don't expect internal threads to have connection attributes */
DBUG_ASSERT
(
pfs
->
m_processlist_id
!=
0
);
if
(
pfs
->
m_processlist_id
==
0
)
return
;
m_row
.
m_ordinal_position
=
ordinal
;
m_row
.
m_process_id
=
pfs
->
m_processlist_id
;
...
...
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