1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-09 22:24:09 +03:00

Update test results after previous pushes

This commit is contained in:
Sergei Petrunia
2015-04-12 10:30:10 +02:00
parent a445b83d73
commit 7ac2f1fbf1
3 changed files with 18 additions and 15 deletions

View File

@@ -142,7 +142,7 @@ ANALYZE
"r_loops": 1,
"r_used_priority_queue": false,
"r_output_rows": 10000,
"r_buffer_size": "195Kb",
"r_buffer_size": "REPLACED",
"table": {
"delete": 1,
"table_name": "t2",
@@ -254,7 +254,7 @@ ANALYZE
"r_loops": 1,
"r_used_priority_queue": false,
"r_output_rows": 10,
"r_buffer_size": "360",
"r_buffer_size": "REPLACED",
"table": {
"table_name": "t0",
"access_type": "ALL",

View File

@@ -48,17 +48,19 @@ ANALYZE
{
"query_block": {
"select_id": 1,
"table": {
"update": 1,
"table_name": "t1",
"partitions": ["p0"],
"access_type": "ALL",
"rows": 10,
"r_rows": 3,
"r_filtered": 100,
"using_io_buffer": 1,
"r_total_time_ms": "REPLACED",
"attached_condition": "(t1.a in (2,3,4))"
"r_total_time_ms": "REPLACED",
"buffer": {
"table": {
"update": 1,
"table_name": "t1",
"partitions": ["p0"],
"access_type": "ALL",
"rows": 10,
"r_rows": 10,
"r_filtered": 30,
"r_total_time_ms": "REPLACED",
"attached_condition": "(t1.a in (2,3,4))"
}
}
}
}
@@ -67,6 +69,7 @@ ANALYZE
{
"query_block": {
"select_id": 1,
"r_total_time_ms": "REPLACED",
"table": {
"delete": 1,
"table_name": "t1",

View File

@@ -42,7 +42,7 @@ explain
delete from t2 order by b limit 5;
explain format=json
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
delete from t2 order by b limit 5;
@@ -65,7 +65,7 @@ explain
select * from t0,t2 where t2.a=t0.a order by t0.a limit 4;
## explain format=json
## 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
select * from t0,t2 where t2.a=t0.a order by t0.a limit 4;