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
206d4f13
Commit
206d4f13
authored
Oct 12, 2012
by
Marc Alff
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql-5.1 --> mysql-5.5
parents
614496d5
fc1fbe15
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
12 deletions
+23
-12
sql/sql_profile.cc
sql/sql_profile.cc
+19
-10
sql/sql_profile.h
sql/sql_profile.h
+4
-2
No files found.
sql/sql_profile.cc
View file @
206d4f13
...
...
@@ -41,6 +41,7 @@
#define TIME_I_S_DECIMAL_SIZE (TIME_FLOAT_DIGITS*100)+(TIME_FLOAT_DIGITS-3)
#define MAX_QUERY_LENGTH 300
#define MAX_QUERY_HISTORY 101
/**
Connects Information_Schema and Profiling.
...
...
@@ -257,9 +258,12 @@ void PROF_MEASUREMENT::collect()
QUERY_PROFILE
::
QUERY_PROFILE
(
PROFILING
*
profiling_arg
,
const
char
*
status_arg
)
:
profiling
(
profiling_arg
),
profiling_query_id
(
0
),
query_source
(
NULL
)
{
profile_start
=
new
PROF_MEASUREMENT
(
this
,
status_arg
);
entries
.
push_back
(
profile_start
);
profile_end
=
profile_start
;
m_seq_counter
=
1
;
PROF_MEASUREMENT
*
prof
=
new
PROF_MEASUREMENT
(
this
,
status_arg
);
prof
->
m_seq
=
m_seq_counter
++
;
m_start_time_usecs
=
prof
->
time_usecs
;
m_end_time_usecs
=
m_start_time_usecs
;
entries
.
push_back
(
prof
);
}
QUERY_PROFILE
::~
QUERY_PROFILE
()
...
...
@@ -298,9 +302,14 @@ void QUERY_PROFILE::new_status(const char *status_arg,
else
prof
=
new
PROF_MEASUREMENT
(
this
,
status_arg
);
profile_end
=
prof
;
prof
->
m_seq
=
m_seq_counter
++
;
m_end_time_usecs
=
prof
->
time_usecs
;
entries
.
push_back
(
prof
);
/* Maintain the query history size. */
while
(
entries
.
elements
>
MAX_QUERY_HISTORY
)
delete
entries
.
pop
();
DBUG_VOID_RETURN
;
}
...
...
@@ -460,8 +469,7 @@ bool PROFILING::show_profiles()
String
elapsed
;
PROF_MEASUREMENT
*
ps
=
prof
->
profile_start
;
PROF_MEASUREMENT
*
pe
=
prof
->
profile_end
;
double
query_time_usecs
=
prof
->
m_end_time_usecs
-
prof
->
m_start_time_usecs
;
if
(
++
idx
<=
unit
->
offset_limit_cnt
)
continue
;
...
...
@@ -470,7 +478,7 @@ bool PROFILING::show_profiles()
protocol
->
prepare_for_resend
();
protocol
->
store
((
uint32
)(
prof
->
profiling_query_id
));
protocol
->
store
((
double
)(
pe
->
time_usecs
-
ps
->
time_usecs
)
/
(
1000.0
*
1000
),
protocol
->
store
((
double
)(
query_time_usecs
/
(
1000.0
*
1000
)
),
(
uint32
)
TIME_FLOAT_DIGITS
-
1
,
&
elapsed
);
if
(
prof
->
query_source
!=
NULL
)
protocol
->
store
(
prof
->
query_source
,
strlen
(
prof
->
query_source
),
...
...
@@ -530,17 +538,18 @@ int PROFILING::fill_statistics_info(THD *thd_arg, TABLE_LIST *tables, Item *cond
us also include a numbering of each state per query. The query_id and
the "seq" together are unique.
*/
ulong
long
seq
;
ulong
seq
;
void
*
entry_iterator
;
PROF_MEASUREMENT
*
entry
,
*
previous
=
NULL
;
/* ...and for each query, go through all its state-change steps. */
for
(
seq
=
0
,
entry_iterator
=
query
->
entries
.
new_iterator
();
for
(
entry_iterator
=
query
->
entries
.
new_iterator
();
entry_iterator
!=
NULL
;
entry_iterator
=
query
->
entries
.
iterator_next
(
entry_iterator
),
seq
++
,
previous
=
entry
,
row_number
++
)
previous
=
entry
,
row_number
++
)
{
entry
=
query
->
entries
.
iterator_value
(
entry_iterator
);
seq
=
entry
->
m_seq
;
/* Skip the first. We count spans of fence, not fence-posts. */
if
(
previous
==
NULL
)
continue
;
...
...
sql/sql_profile.h
View file @
206d4f13
...
...
@@ -180,6 +180,7 @@ class PROF_MEASUREMENT
char
*
file
;
unsigned
int
line
;
ulong
m_seq
;
double
time_usecs
;
char
*
allocated_status_memory
;
...
...
@@ -211,8 +212,9 @@ class QUERY_PROFILE
query_id_t
profiling_query_id
;
/* Session-specific id. */
char
*
query_source
;
PROF_MEASUREMENT
*
profile_start
;
PROF_MEASUREMENT
*
profile_end
;
double
m_start_time_usecs
;
double
m_end_time_usecs
;
ulong
m_seq_counter
;
Queue
<
PROF_MEASUREMENT
>
entries
;
...
...
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