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
2add4028
Commit
2add4028
authored
Sep 19, 2013
by
Sergey Petrunya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-407: Print EXPLAIN [ANALYZE] in the slow query log
- Initial implementation.
parent
ae6e95c4
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
136 additions
and
3 deletions
+136
-3
sql/log.cc
sql/log.cc
+9
-0
sql/log_slow.h
sql/log_slow.h
+1
-0
sql/opt_qpf.cc
sql/opt_qpf.cc
+17
-0
sql/opt_qpf.h
sql/opt_qpf.h
+3
-0
sql/sql_class.h
sql/sql_class.h
+20
-0
sql/sql_lex.h
sql/sql_lex.h
+1
-0
sql/sql_parse.cc
sql/sql_parse.cc
+2
-1
sql/sql_show.cc
sql/sql_show.cc
+80
-0
sql/sys_vars.cc
sql/sys_vars.cc
+3
-2
No files found.
sql/log.cc
View file @
2add4028
...
...
@@ -2825,6 +2825,15 @@ bool MYSQL_QUERY_LOG::write(THD *thd, time_t current_time,
"Yes"
:
"No"
),
thd
->
query_plan_fsort_passes
)
==
(
size_t
)
-
1
)
tmp_errno
=
errno
;
if
(
thd
->
variables
.
log_slow_verbosity
&
LOG_SLOW_VERBOSITY_EXPLAIN
&&
thd
->
lex
->
query_plan_footprint
)
{
StringBuffer
<
128
>
buf
;
DBUG_ASSERT
(
!
thd
->
free_list
);
print_qpf_query
(
thd
->
lex
,
thd
,
&
buf
);
my_b_printf
(
&
log_file
,
"%s"
,
buf
.
c_ptr_safe
());
thd
->
free_items
();
}
if
(
thd
->
db
&&
strcmp
(
thd
->
db
,
db
))
{
// Database changed
if
(
my_b_printf
(
&
log_file
,
"use %s;
\n
"
,
thd
->
db
)
==
(
size_t
)
-
1
)
...
...
sql/log_slow.h
View file @
2add4028
...
...
@@ -18,6 +18,7 @@
#define LOG_SLOW_VERBOSITY_INIT 0
#define LOG_SLOW_VERBOSITY_INNODB 1 << 0
#define LOG_SLOW_VERBOSITY_QUERY_PLAN 1 << 1
#define LOG_SLOW_VERBOSITY_EXPLAIN 1 << 2
#define QPLAN_INIT QPLAN_QC_NO
...
...
sql/opt_qpf.cc
View file @
2add4028
...
...
@@ -120,6 +120,23 @@ int QPF_query::print_explain(select_result_sink *output,
}
}
void
print_qpf_query
(
LEX
*
lex
,
THD
*
thd
,
String
*
str
)
{
lex
->
query_plan_footprint
->
print_explain_str
(
thd
,
str
);
}
bool
QPF_query
::
print_explain_str
(
THD
*
thd
,
String
*
out_str
)
{
List
<
Item
>
fields
;
thd
->
make_explain_field_list
(
fields
);
select_result_text_buffer
output_buf
(
thd
);
output_buf
.
send_result_set_metadata
(
fields
,
thd
->
lex
->
describe
);
print_explain
(
&
output_buf
,
0
);
output_buf
.
save_to
(
out_str
);
return
false
;
}
static
void
push_str
(
List
<
Item
>
*
item_list
,
const
char
*
str
)
{
...
...
sql/opt_qpf.h
View file @
2add4028
...
...
@@ -230,6 +230,9 @@ public:
/* Produce a tabular EXPLAIN output */
int
print_explain
(
select_result_sink
*
output
,
uint8
explain_flags
);
/* Return tabular EXPLAIN output as a text string */
bool
print_explain_str
(
THD
*
thd
,
String
*
out_str
);
/* If true, at least part of EXPLAIN can be printed */
bool
have_query_plan
()
{
return
upd_del_plan
!=
NULL
||
get_node
(
1
)
!=
NULL
;
}
MEM_ROOT
*
mem_root
;
...
...
sql/sql_class.h
View file @
2add4028
...
...
@@ -3442,6 +3442,26 @@ public:
};
/*
This is a select_result_sink which stores the data in text form.
*/
class
select_result_text_buffer
:
public
select_result_sink
{
public:
select_result_text_buffer
(
THD
*
thd_arg
)
:
thd
(
thd_arg
)
{}
int
send_data
(
List
<
Item
>
&
items
);
bool
send_result_set_metadata
(
List
<
Item
>
&
fields
,
uint
flag
);
void
save_to
(
String
*
res
);
private:
int
append_row
(
List
<
Item
>
&
items
,
bool
send_names
);
THD
*
thd
;
List
<
char
*>
rows
;
int
n_columns
;
};
/*
Base class for select_result descendands which intercept and
...
...
sql/sql_lex.h
View file @
2add4028
...
...
@@ -622,6 +622,7 @@ class QPF_query;
void
delete_qpf_query
(
LEX
*
lex
);
void
create_qpf_query
(
LEX
*
lex
,
MEM_ROOT
*
mem_root
);
void
print_qpf_query
(
LEX
*
lex
,
THD
*
thd
,
String
*
str
);
class
st_select_lex_unit
:
public
st_select_lex_node
{
protected:
...
...
sql/sql_parse.cc
View file @
2add4028
...
...
@@ -1529,7 +1529,6 @@ void log_slow_statement(THD *thd)
{
DBUG_ENTER
(
"log_slow_statement"
);
delete_qpf_query
(
thd
->
lex
);
/*
The following should never be true with our current code base,
...
...
@@ -1567,6 +1566,8 @@ void log_slow_statement(THD *thd)
thd
->
utime_after_query
);
thd_proc_info
(
thd
,
0
);
}
delete_qpf_query
(
thd
->
lex
);
DBUG_VOID_RETURN
;
}
...
...
sql/sql_show.cc
View file @
2add4028
...
...
@@ -2377,6 +2377,86 @@ int select_result_explain_buffer::send_data(List<Item> &items)
DBUG_RETURN
(
test
(
res
));
}
bool
select_result_text_buffer
::
send_result_set_metadata
(
List
<
Item
>
&
fields
,
uint
flag
)
{
n_columns
=
fields
.
elements
;
return
append_row
(
fields
,
true
/*send item names */
);
return
send_data
(
fields
);
}
int
select_result_text_buffer
::
send_data
(
List
<
Item
>
&
items
)
{
return
append_row
(
items
,
false
/*send item values */
);
}
int
select_result_text_buffer
::
append_row
(
List
<
Item
>
&
items
,
bool
send_names
)
{
List_iterator
<
Item
>
it
(
items
);
Item
*
item
;
char
**
row
;
int
column
=
0
;
if
(
!
(
row
=
(
char
**
)
thd
->
alloc
(
sizeof
(
char
*
)
*
n_columns
)))
return
true
;
rows
.
push_back
(
row
);
while
((
item
=
it
++
))
{
DBUG_ASSERT
(
column
<
n_columns
);
StringBuffer
<
32
>
buf
;
const
char
*
data_ptr
;
size_t
data_len
;
if
(
send_names
)
{
data_ptr
=
item
->
name
;
data_len
=
strlen
(
item
->
name
);
}
else
{
String
*
res
;
res
=
item
->
val_str
(
&
buf
);
if
(
item
->
null_value
)
{
data_ptr
=
"NULL"
;
data_len
=
4
;
}
else
{
data_ptr
=
res
->
c_ptr_safe
();
data_len
=
res
->
length
();
}
}
char
*
ptr
=
(
char
*
)
thd
->
alloc
(
data_len
+
1
);
memcpy
(
ptr
,
data_ptr
,
data_len
+
1
);
row
[
column
]
=
ptr
;
column
++
;
}
return
false
;
}
void
select_result_text_buffer
::
save_to
(
String
*
res
)
{
List_iterator
<
char
*>
it
(
rows
);
char
**
row
;
res
->
append
(
"#
\n
"
);
while
((
row
=
it
++
))
{
res
->
append
(
"# "
);
for
(
int
i
=
0
;
i
<
n_columns
;
i
++
)
{
if
(
i
)
res
->
append
(
'\t'
);
res
->
append
(
row
[
i
]);
}
res
->
append
(
"
\n
"
);
}
res
->
append
(
"#
\n
"
);
}
/*
Store the SHOW EXPLAIN output in the temporary table.
...
...
sql/sys_vars.cc
View file @
2add4028
...
...
@@ -4115,11 +4115,12 @@ static Sys_var_ulong Sys_log_slow_rate_limit(
SESSION_VAR
(
log_slow_rate_limit
),
CMD_LINE
(
REQUIRED_ARG
),
VALID_RANGE
(
1
,
UINT_MAX
),
DEFAULT
(
1
),
BLOCK_SIZE
(
1
));
static
const
char
*
log_slow_verbosity_names
[]
=
{
"innodb"
,
"query_plan"
,
0
};
static
const
char
*
log_slow_verbosity_names
[]
=
{
"innodb"
,
"query_plan"
,
"explain"
,
0
};
static
Sys_var_set
Sys_log_slow_verbosity
(
"log_slow_verbosity"
,
"log-slow-verbosity=[value[,value ...]] where value is one of "
"'innodb', 'query_plan'"
,
"'innodb', 'query_plan'
, 'explain'
"
,
SESSION_VAR
(
log_slow_verbosity
),
CMD_LINE
(
REQUIRED_ARG
),
log_slow_verbosity_names
,
DEFAULT
(
LOG_SLOW_VERBOSITY_INIT
));
...
...
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