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
7ac2f1fb
Commit
7ac2f1fb
authored
Apr 12, 2015
by
Sergei Petrunia
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update test results after previous pushes
parent
a445b83d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
15 deletions
+18
-15
mysql-test/r/analyze_stmt_orderby.result
mysql-test/r/analyze_stmt_orderby.result
+2
-2
mysql-test/r/explain_json_format_partitions.result
mysql-test/r/explain_json_format_partitions.result
+14
-11
mysql-test/t/analyze_stmt_orderby.test
mysql-test/t/analyze_stmt_orderby.test
+2
-2
No files found.
mysql-test/r/analyze_stmt_orderby.result
View file @
7ac2f1fb
...
@@ -142,7 +142,7 @@ ANALYZE
...
@@ -142,7 +142,7 @@ ANALYZE
"r_loops": 1,
"r_loops": 1,
"r_used_priority_queue": false,
"r_used_priority_queue": false,
"r_output_rows": 10000,
"r_output_rows": 10000,
"r_buffer_size": "
195Kb
",
"r_buffer_size": "
REPLACED
",
"table": {
"table": {
"delete": 1,
"delete": 1,
"table_name": "t2",
"table_name": "t2",
...
@@ -254,7 +254,7 @@ ANALYZE
...
@@ -254,7 +254,7 @@ ANALYZE
"r_loops": 1,
"r_loops": 1,
"r_used_priority_queue": false,
"r_used_priority_queue": false,
"r_output_rows": 10,
"r_output_rows": 10,
"r_buffer_size": "
360
",
"r_buffer_size": "
REPLACED
",
"table": {
"table": {
"table_name": "t0",
"table_name": "t0",
"access_type": "ALL",
"access_type": "ALL",
...
...
mysql-test/r/explain_json_format_partitions.result
View file @
7ac2f1fb
...
@@ -48,17 +48,19 @@ ANALYZE
...
@@ -48,17 +48,19 @@ ANALYZE
{
{
"query_block": {
"query_block": {
"select_id": 1,
"select_id": 1,
"table": {
"r_total_time_ms": "REPLACED",
"update": 1,
"buffer": {
"table_name": "t1",
"table": {
"partitions": ["p0"],
"update": 1,
"access_type": "ALL",
"table_name": "t1",
"rows": 10,
"partitions": ["p0"],
"r_rows": 3,
"access_type": "ALL",
"r_filtered": 100,
"rows": 10,
"using_io_buffer": 1,
"r_rows": 10,
"r_total_time_ms": "REPLACED",
"r_filtered": 30,
"attached_condition": "(t1.a in (2,3,4))"
"r_total_time_ms": "REPLACED",
"attached_condition": "(t1.a in (2,3,4))"
}
}
}
}
}
}
}
...
@@ -67,6 +69,7 @@ ANALYZE
...
@@ -67,6 +69,7 @@ ANALYZE
{
{
"query_block": {
"query_block": {
"select_id": 1,
"select_id": 1,
"r_total_time_ms": "REPLACED",
"table": {
"table": {
"delete": 1,
"delete": 1,
"table_name": "t1",
"table_name": "t1",
...
...
mysql-test/t/analyze_stmt_orderby.test
View file @
7ac2f1fb
...
@@ -42,7 +42,7 @@ explain
...
@@ -42,7 +42,7 @@ explain
delete
from
t2
order
by
b
limit
5
;
delete
from
t2
order
by
b
limit
5
;
explain
format
=
json
explain
format
=
json
delete
from
t2
order
by
b
limit
5
;
delete
from
t2
order
by
b
limit
5
;
--
replace_regex
/
"r_total_time_ms"
:
[
0
-
9
]
*
[
.
]
?
[
0
-
9
]
*/
"r_total_time_ms"
:
"REPLACED"
/
--
replace_regex
/
"r_total_time_ms"
:
[
0
-
9
]
*
[
.
]
?
[
0
-
9
]
*/
"r_total_time_ms"
:
"REPLACED"
/
/
"r_buffer_size"
:
"[^"
]
+
"/"
r_buffer_size
": "
REPLACED
"/
analyze format=json
analyze format=json
delete from t2 order by b limit 5;
delete from t2 order by b limit 5;
...
@@ -65,7 +65,7 @@ explain
...
@@ -65,7 +65,7 @@ explain
select * from t0,t2 where t2.a=t0.a order by t0.a limit 4;
select * from t0,t2 where t2.a=t0.a order by t0.a limit 4;
## explain format=json
## explain format=json
## select * from t0,t2 where t2.a=t0.a order by t0.a limit 4;
## select * from t0,t2 where t2.a=t0.a order by t0.a limit 4;
--
replace_regex
/
"r_total_time_ms"
:
[
0
-
9
]
*
[
.
]
?
[
0
-
9
]
*/
"r_total_time_ms"
:
"REPLACED"
/
--replace_regex /"
r_total_time_ms
": [0-9]*[.]?[0-9]*/"
r_total_time_ms
": "
REPLACED
"/
/"
r_buffer_size
": "
[
^
"]+"
/
"r_buffer_size"
:
"REPLACED"
/
analyze
format
=
json
analyze
format
=
json
select
*
from
t0
,
t2
where
t2
.
a
=
t0
.
a
order
by
t0
.
a
limit
4
;
select
*
from
t0
,
t2
where
t2
.
a
=
t0
.
a
order
by
t0
.
a
limit
4
;
...
...
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