mariadb/mysql-test/main/opt_trace.result
Yuchen Pei c5154d8587
MDEV-36055 [wip] Add a check of join table counts before heuristic pruning
If we completely disable heuristic pruning, the test
main.greedy_optimizer will grind to almost hanging when the following
iterates to i > 20:

  let $query= SELECT COUNT(*) FROM t1 AS x;
  let $i= 1;
  while ($i < 61)
  {
    let $query= $query JOIN t$i ON t$i.I=x.I;
    inc $i;

    select @@optimizer_prune_level;
    select @@optimizer_search_depth;
    eval EXPLAIN $query;
  }
2025-07-28 16:33:02 +10:00

49834 lines
2.3 MiB

SELECT table_name, column_name FROM information_schema.columns where table_name="OPTIMIZER_TRACE";
table_name column_name
OPTIMIZER_TRACE QUERY
OPTIMIZER_TRACE TRACE
OPTIMIZER_TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE
OPTIMIZER_TRACE INSUFFICIENT_PRIVILEGES
set optimizer_trace="enabled=on";
show variables like 'optimizer_trace';
Variable_name Value
optimizer_trace enabled=on
set optimizer_trace="enabled=off";
show variables like 'optimizer_trace';
Variable_name Value
optimizer_trace enabled=off
create table t1 (a int, b int);
insert into t1 values (1,2),(2,3);
create table t2 (b int);
insert into t2 values (1),(2);
analyze table t1;
Table Op Msg_type Msg_text
test.t1 analyze status Engine-independent statistics collected
test.t1 analyze status OK
analyze table t2;
Table Op Msg_type Msg_text
test.t2 analyze status Engine-independent statistics collected
test.t2 analyze status OK
create function f1 (a int) returns INT
return 1;
create view v1 as select * from t1 where t1.a=1;
create view v2 as select * from t1 where t1.a=1 group by t1.b;
set optimizer_trace="enabled=on";
# Mergeable views/derived tables
select * from v1;
a b
1 2
select * from information_schema.OPTIMIZER_TRACE;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
select * from v1 {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"view": {
"table": "v1",
"select_id": 2,
"algorithm": "merged"
}
},
{
"join_preparation": {
"select_id": 2,
"steps": [
{
"expanded_query": "/* select#2 */ select t1.a AS a,t1.b AS b from t1 where t1.a = 1"
}
]
}
},
{
"expanded_query": "/* select#1 */ select v1.a AS a,v1.b AS b from v1"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"condition_processing": {
"condition": "WHERE",
"original_condition": "t1.a = 1",
"steps": [
{
"transformation": "equality_propagation",
"resulting_condition": "multiple equal(1, t1.a)"
},
{
"transformation": "constant_propagation",
"resulting_condition": "multiple equal(1, t1.a)"
},
{
"transformation": "trivial_condition_removal",
"resulting_condition": "multiple equal(1, t1.a)"
}
]
}
},
{
"ref_optimizer_key_uses": []
},
{
"rows_estimation": [
{
"selectivity_for_indexes": [],
"selectivity_for_columns": [
{
"column_name": "a",
"ranges": ["1 <= a <= 1"],
"selectivity_from_histogram": 0.5
}
],
"cond_selectivity": 0.5
},
{
"table": "t1",
"table_scan": {
"rows": 2,
"read_cost": 0.01028441,
"read_and_compare_cost": 0.01034841
}
}
]
},
{
"table_dependencies": [
{
"table": "t1",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 2,
"rows_after_filter": 1,
"rows_out": 1,
"cost": 0.01034841,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 1,
"rows_out": 1,
"cost": 0.01034841,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t1",
"rows_for_plan": 1,
"cost_for_plan": 0.01034841
}
]
},
{
"best_join_order": ["t1"],
"rows": 1,
"cost": 0.01034841
},
{
"substitute_best_equal": {
"condition": "WHERE",
"resulting_condition": "t1.a = 1"
}
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [],
"attached_conditions_summary": [
{
"table": "t1",
"attached_condition": "t1.a = 1"
}
]
}
},
{
"make_join_readinfo": []
}
]
}
}
]
} 0 0
select * from (select * from t1 where t1.a=1)q;
a b
1 2
select * from information_schema.OPTIMIZER_TRACE;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
select * from (select * from t1 where t1.a=1)q {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"derived": {
"table": "q",
"select_id": 2,
"algorithm": "merged"
}
},
{
"join_preparation": {
"select_id": 2,
"steps": [
{
"expanded_query": "/* select#2 */ select t1.a AS a,t1.b AS b from t1 where t1.a = 1"
}
]
}
},
{
"expanded_query": "/* select#1 */ select q.a AS a,q.b AS b from (/* select#2 */ select t1.a AS a,t1.b AS b from t1 where t1.a = 1) q"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"condition_processing": {
"condition": "WHERE",
"original_condition": "t1.a = 1",
"steps": [
{
"transformation": "equality_propagation",
"resulting_condition": "multiple equal(1, t1.a)"
},
{
"transformation": "constant_propagation",
"resulting_condition": "multiple equal(1, t1.a)"
},
{
"transformation": "trivial_condition_removal",
"resulting_condition": "multiple equal(1, t1.a)"
}
]
}
},
{
"ref_optimizer_key_uses": []
},
{
"rows_estimation": [
{
"selectivity_for_indexes": [],
"selectivity_for_columns": [
{
"column_name": "a",
"ranges": ["1 <= a <= 1"],
"selectivity_from_histogram": 0.5
}
],
"cond_selectivity": 0.5
},
{
"table": "t1",
"table_scan": {
"rows": 2,
"read_cost": 0.01028441,
"read_and_compare_cost": 0.01034841
}
}
]
},
{
"table_dependencies": [
{
"table": "t1",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 2,
"rows_after_filter": 1,
"rows_out": 1,
"cost": 0.01034841,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 1,
"rows_out": 1,
"cost": 0.01034841,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t1",
"rows_for_plan": 1,
"cost_for_plan": 0.01034841
}
]
},
{
"best_join_order": ["t1"],
"rows": 1,
"cost": 0.01034841
},
{
"substitute_best_equal": {
"condition": "WHERE",
"resulting_condition": "t1.a = 1"
}
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [],
"attached_conditions_summary": [
{
"table": "t1",
"attached_condition": "t1.a = 1"
}
]
}
},
{
"make_join_readinfo": []
}
]
}
}
]
} 0 0
# Non-Mergeable views
select * from v2;
a b
1 2
select * from information_schema.OPTIMIZER_TRACE;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
select * from v2 {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"view": {
"table": "v2",
"select_id": 2,
"algorithm": "materialized"
}
},
{
"join_preparation": {
"select_id": 2,
"steps": [
{
"expanded_query": "/* select#2 */ select t1.a AS a,t1.b AS b from t1 where t1.a = 1 group by t1.b"
}
]
}
},
{
"expanded_query": "/* select#1 */ select v2.a AS a,v2.b AS b from v2"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"join_optimization": {
"select_id": 2,
"steps": [
{
"condition_processing": {
"condition": "WHERE",
"original_condition": "t1.a = 1",
"steps": [
{
"transformation": "equality_propagation",
"resulting_condition": "multiple equal(1, t1.a)"
},
{
"transformation": "constant_propagation",
"resulting_condition": "multiple equal(1, t1.a)"
},
{
"transformation": "trivial_condition_removal",
"resulting_condition": "multiple equal(1, t1.a)"
}
]
}
},
{
"ref_optimizer_key_uses": []
},
{
"rows_estimation": [
{
"selectivity_for_indexes": [],
"selectivity_for_columns": [
{
"column_name": "a",
"ranges": ["1 <= a <= 1"],
"selectivity_from_histogram": 0.5
}
],
"cond_selectivity": 0.5
},
{
"table": "t1",
"table_scan": {
"rows": 2,
"read_cost": 0.01028441,
"read_and_compare_cost": 0.01034841
}
}
]
},
{
"table_dependencies": [
{
"table": "t1",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 2,
"rows_after_filter": 1,
"rows_out": 1,
"cost": 0.01034841,
"index_only": false,
"chosen": true,
"use_tmp_table": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 1,
"rows_out": 1,
"cost": 0.01034841,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t1",
"rows_for_plan": 1,
"cost_for_plan": 0.01034841,
"cost_for_sorting": 6.301866e-4
}
]
},
{
"materialized_output_cardinality": {
"join_output_cardinality": 1,
"estimation": [
{
"table": "t1",
"steps": [
{
"column": "b",
"cardinality": 2
}
],
"cardinality": 2
}
]
}
},
{
"check_split_materialized": {
"not_applicable": "no candidate field can be accessed through ref"
}
},
{
"best_join_order": ["t1"],
"rows": 1,
"cost": 0.010978597
},
{
"substitute_best_equal": {
"condition": "WHERE",
"resulting_condition": "t1.a = 1"
}
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [],
"attached_conditions_summary": [
{
"table": "t1",
"attached_condition": "t1.a = 1"
}
]
}
},
{
"make_join_readinfo": []
},
{
"test_if_skip_sort_order": []
}
]
}
},
{
"rows_estimation": [
{
"table": "<derived2>",
"table_scan": {
"rows": 2,
"read_cost": 0.010020701,
"read_and_compare_cost": 0.010089369
}
}
]
},
{
"table_dependencies": [
{
"table": "<derived2>",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "<derived2>",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 2,
"rows_after_filter": 2,
"rows_out": 2,
"cost": 0.010089369,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 2,
"rows_out": 2,
"cost": 0.010089369,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "<derived2>",
"rows_for_plan": 2,
"cost_for_plan": 0.010089369
}
]
},
{
"best_join_order": ["<derived2>"],
"rows": 2,
"cost": 0.010089369
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [],
"attached_conditions_summary": [
{
"table": "<derived2>",
"attached_condition": null
}
]
}
},
{
"make_join_readinfo": []
}
]
}
}
]
} 0 0
drop table t1,t2;
drop view v1,v2;
drop function f1;
create table t1(a int, b int);
insert into t1 values (0,0),(1,1),(2,1),(3,2),(4,3),
(5,3),(6,3),(7,3),(8,3),(9,3);
create table t2(a int, b int);
insert into t2 values (0,0),(1,1),(2,1),(3,2),(4,3),
(5,3),(6,3),(7,3),(8,3),(9,3);
ANALYZE TABLE t1;
Table Op Msg_type Msg_text
test.t1 analyze status Engine-independent statistics collected
test.t1 analyze status OK
ANALYZE TABLE t2;
Table Op Msg_type Msg_text
test.t2 analyze status Engine-independent statistics collected
test.t2 analyze status OK
create view v1 as select a from t1 group by b;
create view v2 as select a from t2;
# Mergeable view
explain select * from v2 ;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t2 ALL NULL NULL NULL NULL 10
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
explain select * from v2 {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"view": {
"table": "v2",
"select_id": 2,
"algorithm": "merged"
}
},
{
"join_preparation": {
"select_id": 2,
"steps": [
{
"expanded_query": "/* select#2 */ select t2.a AS a from t2"
}
]
}
},
{
"expanded_query": "/* select#1 */ select v2.a AS a from v2"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"rows_estimation": [
{
"table": "t2",
"table_scan": {
"rows": 10,
"read_cost": 0.01127965,
"read_and_compare_cost": 0.01159965
}
}
]
},
{
"table_dependencies": [
{
"table": "t2",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t2",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 10,
"rows_after_filter": 10,
"rows_out": 10,
"cost": 0.01159965,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 10,
"rows_out": 10,
"cost": 0.01159965,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t2",
"rows_for_plan": 10,
"cost_for_plan": 0.01159965
}
]
},
{
"best_join_order": ["t2"],
"rows": 10,
"cost": 0.01159965
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [],
"attached_conditions_summary": [
{
"table": "t2",
"attached_condition": null
}
]
}
},
{
"make_join_readinfo": []
}
]
}
}
]
} 0 0
# Non-Mergeable view
explain select * from v1 ;
id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY <derived2> ALL NULL NULL NULL NULL 4
2 DERIVED t1 ALL NULL NULL NULL NULL 10 Using temporary; Using filesort
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
explain select * from v1 {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"view": {
"table": "v1",
"select_id": 2,
"algorithm": "materialized"
}
},
{
"join_preparation": {
"select_id": 2,
"steps": [
{
"expanded_query": "/* select#2 */ select t1.a AS a from t1 group by t1.b"
}
]
}
},
{
"expanded_query": "/* select#1 */ select v1.a AS a from v1"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"join_optimization": {
"select_id": 2,
"steps": [
{
"rows_estimation": [
{
"table": "t1",
"table_scan": {
"rows": 10,
"read_cost": 0.01127965,
"read_and_compare_cost": 0.01159965
}
}
]
},
{
"table_dependencies": [
{
"table": "t1",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 10,
"rows_after_filter": 10,
"rows_out": 10,
"cost": 0.01159965,
"index_only": false,
"chosen": true,
"use_tmp_table": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 10,
"rows_out": 10,
"cost": 0.01159965,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t1",
"rows_for_plan": 10,
"cost_for_plan": 0.01159965,
"cost_for_sorting": 0.006368384
}
]
},
{
"materialized_output_cardinality": {
"join_output_cardinality": 10,
"estimation": [
{
"table": "t1",
"steps": [
{
"column": "b",
"cardinality": 4
}
],
"cardinality": 4
}
],
"post_group_cardinality": 4
}
},
{
"check_split_materialized": {
"not_applicable": "group list has no candidates"
}
},
{
"best_join_order": ["t1"],
"rows": 10,
"cost": 0.017968034
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [],
"attached_conditions_summary": [
{
"table": "t1",
"attached_condition": null
}
]
}
},
{
"make_join_readinfo": []
},
{
"test_if_skip_sort_order": []
}
]
}
},
{
"rows_estimation": [
{
"table": "<derived2>",
"table_scan": {
"rows": 4,
"read_cost": 0.010041402,
"read_and_compare_cost": 0.010178738
}
}
]
},
{
"table_dependencies": [
{
"table": "<derived2>",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "<derived2>",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 4,
"rows_after_filter": 4,
"rows_out": 4,
"cost": 0.010178738,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 4,
"rows_out": 4,
"cost": 0.010178738,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "<derived2>",
"rows_for_plan": 4,
"cost_for_plan": 0.010178738
}
]
},
{
"best_join_order": ["<derived2>"],
"rows": 4,
"cost": 0.010178738
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [],
"attached_conditions_summary": [
{
"table": "<derived2>",
"attached_condition": null
}
]
}
},
{
"make_join_readinfo": []
}
]
}
}
]
} 0 0
drop table t1,t2;
drop view v1,v2;
#
# print ref-keyues array
#
create table t0 (a int);
INSERT INTO t0 VALUES (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
create table t1 (a int, b int, c int, key(a));
insert into t1 select A.a*10 + B.a, A.a*10 + B.a, A.a*10 + B.a from t0 A, t0 B;
create table t2(a int, b int, c int , key(a));
insert into t2 select A.a*10 + B.a, A.a*10 + B.a, A.a*10 + B.a from t0 A, t0 B;
analyze table t1;
Table Op Msg_type Msg_text
test.t1 analyze status Engine-independent statistics collected
test.t1 analyze status Table is already up to date
analyze table t2;
Table Op Msg_type Msg_text
test.t2 analyze status Engine-independent statistics collected
test.t2 analyze status Table is already up to date
explain select * from t1,t2 where t1.a=t2.b+2 and t2.a= t1.b;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ALL a NULL NULL NULL 100 Using where
1 SIMPLE t2 ref a a 5 test.t1.b 1 Using where
select * from information_schema.OPTIMIZER_TRACE;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
explain select * from t1,t2 where t1.a=t2.b+2 and t2.a= t1.b {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"expanded_query": "select t1.a AS a,t1.b AS b,t1.c AS c,t2.a AS a,t2.b AS b,t2.c AS c from t1 join t2 where t1.a = t2.b + 2 and t2.a = t1.b"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"condition_processing": {
"condition": "WHERE",
"original_condition": "t1.a = t2.b + 2 and t2.a = t1.b",
"steps": [
{
"transformation": "equality_propagation",
"resulting_condition": "t1.a = t2.b + 2 and multiple equal(t2.a, t1.b)"
},
{
"transformation": "constant_propagation",
"resulting_condition": "t1.a = t2.b + 2 and multiple equal(t2.a, t1.b)"
},
{
"transformation": "trivial_condition_removal",
"resulting_condition": "t1.a = t2.b + 2 and multiple equal(t2.a, t1.b)"
}
]
}
},
{
"ref_optimizer_key_uses": [
{
"table": "t1",
"index": "a",
"field": "a",
"equals": "t2.b + 2",
"null_rejecting": true
},
{
"table": "t2",
"index": "a",
"field": "a",
"equals": "t1.b",
"null_rejecting": true
}
]
},
{
"rows_estimation": [
{
"table": "t1",
"table_scan": {
"rows": 100,
"read_cost": 0.0224761,
"read_and_compare_cost": 0.0256761
}
},
{
"table": "t2",
"table_scan": {
"rows": 100,
"read_cost": 0.0224761,
"read_and_compare_cost": 0.0256761
}
}
]
},
{
"table_dependencies": [
{
"table": "t1",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
},
{
"table": "t2",
"row_may_be_null": false,
"map_bit": 1,
"depends_on_map_bits": []
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 100,
"rows_after_filter": 100,
"rows_out": 100,
"cost": 0.0256761,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 100,
"rows_out": 100,
"cost": 0.0256761,
"uses_join_buffering": false
}
}
},
{
"best_access_path": {
"table": "t2",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 100,
"rows_after_filter": 100,
"rows_out": 100,
"cost": 0.0256761,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 100,
"rows_out": 100,
"cost": 0.0256761,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t1",
"rows_for_plan": 100,
"cost_for_plan": 0.0256761,
"rest_of_plan": [
{
"plan_prefix": "t1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t2",
"plan_details": {
"record_count": 100
},
"considered_access_paths": [
{
"access_type": "ref",
"index": "a",
"used_range_estimates": false,
"reason": "not available",
"rows": 1,
"cost": 0.1821659,
"chosen": true
},
{
"access_type": "scan_with_join_cache",
"rows": 100,
"rows_after_filter": 100,
"rows_out": 1,
"cost": 0.9604227,
"cost_without_join_buffer": 2.56761,
"index_only": false,
"chosen": false
}
],
"chosen_access_method": {
"type": "ref",
"index": "a",
"rows_read": 1,
"rows_out": 1,
"cost": 0.1821659,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "t1",
"table": "t2",
"rows_for_plan": 100,
"cost_for_plan": 0.207842
}
]
},
{
"plan_prefix": "",
"table": "t2",
"rows_for_plan": 100,
"cost_for_plan": 0.0256761,
"rest_of_plan": [
{
"plan_prefix": "t2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 100
},
"considered_access_paths": [
{
"access_type": "ref",
"index": "a",
"used_range_estimates": false,
"reason": "not available",
"rows": 1,
"cost": 0.1821659,
"chosen": true
},
{
"access_type": "scan_with_join_cache",
"rows": 100,
"rows_after_filter": 100,
"rows_out": 1,
"cost": 0.9604227,
"cost_without_join_buffer": 2.56761,
"index_only": false,
"chosen": false
}
],
"chosen_access_method": {
"type": "ref",
"index": "a",
"rows_read": 1,
"rows_out": 1,
"cost": 0.1821659,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "t2",
"table": "t1",
"rows_for_plan": 100,
"cost_for_plan": 0.207842,
"pruned_by_cost": true,
"current_cost": 0.207842,
"best_cost": 0.207842
}
]
}
]
},
{
"best_join_order": ["t1", "t2"],
"rows": 100,
"cost": 0.207842
},
{
"substitute_best_equal": {
"condition": "WHERE",
"resulting_condition": "t2.a = t1.b and t1.a = t2.b + 2"
}
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [],
"attached_conditions_summary": [
{
"table": "t1",
"attached_condition": "t1.b is not null"
},
{
"table": "t2",
"attached_condition": "t1.a = t2.b + 2"
}
]
}
},
{
"make_join_readinfo": []
}
]
}
}
]
} 0 0
drop table t1,t2,t0;
#
# group_by min max optimization
#
CREATE TABLE t1 (id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, a INT NOT NULL, KEY(a));
insert into t1 select seq, mod(seq,4)+1 from seq_1_to_65536;
analyze table t1;
Table Op Msg_type Msg_text
test.t1 analyze status Engine-independent statistics collected
test.t1 analyze status Table is already up to date
EXPLAIN SELECT DISTINCT a FROM t1;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range NULL a 4 NULL 5 Using index for group-by
select * from information_schema.OPTIMIZER_TRACE;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
EXPLAIN SELECT DISTINCT a FROM t1 {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"expanded_query": "select distinct t1.a AS a from t1"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"rows_estimation": [
{
"table": "t1",
"range_analysis": {
"table_scan": {
"rows": 65536,
"cost": 10.29477568
},
"potential_range_indexes": [
{
"index": "PRIMARY",
"usable": false,
"cause": "not applicable"
},
{
"index": "a",
"usable": true,
"key_parts": ["a"]
}
],
"best_covering_index_scan": {
"index": "a",
"cost": 9.118658462,
"chosen": true
},
"group_index_range": {
"distinct_query": true,
"potential_group_range_indexes": [
{
"index": "a",
"covering": true,
"rows": 5,
"cost": 0.004191135
}
]
},
"best_group_range_summary": {
"type": "index_group",
"index": "a",
"min_max_arg": null,
"min_aggregate": false,
"max_aggregate": false,
"distinct_aggregate": false,
"rows": 5,
"cost": 0.004191135,
"key_parts_used_for_access": ["a"],
"ranges": [],
"chosen": true
},
"chosen_range_access_summary": {
"range_access_plan": {
"type": "index_group",
"index": "a",
"min_max_arg": null,
"min_aggregate": false,
"max_aggregate": false,
"distinct_aggregate": false,
"rows": 5,
"cost": 0.004191135,
"key_parts_used_for_access": ["a"],
"ranges": []
},
"rows_for_plan": 5,
"cost_for_plan": 0.004191135,
"chosen": true
}
}
}
]
},
{
"table_dependencies": [
{
"table": "t1",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "index_merge",
"rows": 5,
"rows_after_filter": 5,
"rows_out": 5,
"cost": 0.004191135,
"chosen": true
}
],
"chosen_access_method": {
"type": "index_merge",
"rows_read": 5,
"rows_out": 5,
"cost": 0.004191135,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t1",
"rows_for_plan": 5,
"cost_for_plan": 0.004191135
}
]
},
{
"best_join_order": ["t1"],
"rows": 5,
"cost": 0.004191135
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [],
"attached_conditions_summary": [
{
"table": "t1",
"attached_condition": null
}
]
}
},
{
"make_join_readinfo": []
},
{
"test_if_skip_sort_order": []
}
]
}
}
]
} 0 0
drop table t1;
#
# With group by , where clause and MIN/MAX function
#
CREATE TABLE t1 (a INT, b INT, c int, d int, KEY(a,b,c,d));
INSERT INTO t1 VALUES (1,1,1,1), (2,2,2,2), (3,3,3,3), (4,4,4,4), (1,0,1,1), (3,2,3,3), (4,5,4,4);
ANALYZE TABLE t1;
Table Op Msg_type Msg_text
test.t1 analyze status Engine-independent statistics collected
test.t1 analyze status OK
EXPLAIN SELECT MIN(d) FROM t1 where b=2 and c=3 group by a;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range NULL a 20 NULL 7 Using where; Using index for group-by
set statement optimizer_scan_setup_cost=0 for EXPLAIN SELECT MIN(d) FROM t1 where b=2 and c=3 group by a;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 index NULL a 20 NULL 7 Using where; Using index
select * from information_schema.OPTIMIZER_TRACE;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
set statement optimizer_scan_setup_cost=0 for EXPLAIN SELECT MIN(d) FROM t1 where b=2 and c=3 group by a {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"expanded_query": "select min(t1.d) AS `MIN(d)` from t1 where t1.b = 2 and t1.c = 3 group by t1.a"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"condition_processing": {
"condition": "WHERE",
"original_condition": "t1.b = 2 and t1.c = 3",
"steps": [
{
"transformation": "equality_propagation",
"resulting_condition": "multiple equal(2, t1.b) and multiple equal(3, t1.c)"
},
{
"transformation": "constant_propagation",
"resulting_condition": "multiple equal(2, t1.b) and multiple equal(3, t1.c)"
},
{
"transformation": "trivial_condition_removal",
"resulting_condition": "multiple equal(2, t1.b) and multiple equal(3, t1.c)"
}
]
}
},
{
"ref_optimizer_key_uses": []
},
{
"rows_estimation": [
{
"table": "t1",
"range_analysis": {
"table_scan": {
"rows": 7,
"cost": 0.001130435
},
"potential_range_indexes": [
{
"index": "a",
"usable": true,
"key_parts": ["a", "b", "c", "d"]
}
],
"best_covering_index_scan": {
"index": "a",
"cost": 0.001758432,
"chosen": false,
"cause": "cost"
},
"setup_range_conditions": [],
"analyzing_range_alternatives": {
"range_scan_alternatives": [],
"analyzing_roworder_intersect": {
"cause": "too few roworder scans"
},
"analyzing_index_merge_union": []
},
"group_index_range": {
"potential_group_range_indexes": [
{
"index": "a",
"covering": true,
"ranges": ["(2,3) <= (b,c) <= (2,3)"],
"rows": 7,
"cost": 0.004425189
}
]
},
"best_group_range_summary": {
"type": "index_group",
"index": "a",
"min_max_arg": "d",
"min_aggregate": true,
"max_aggregate": false,
"distinct_aggregate": false,
"rows": 7,
"cost": 0.004425189,
"key_parts_used_for_access": ["a", "b", "c"],
"ranges": ["(2,3) <= (b,c) <= (2,3)"],
"chosen": false,
"cause": "cost"
}
}
},
{
"selectivity_for_indexes": [],
"selectivity_for_columns": [
{
"column_name": "b",
"ranges": ["2 <= b <= 2"],
"selectivity_from_histogram": 0.285714286
},
{
"column_name": "c",
"ranges": ["3 <= c <= 3"],
"selectivity_from_histogram": 0.285714286
}
],
"cond_selectivity": 0.081632653
}
]
},
{
"table_dependencies": [
{
"table": "t1",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 7,
"rows_after_filter": 1,
"rows_out": 0.571428573,
"cost": 0.001758432,
"index_only": true,
"chosen": true,
"use_tmp_table": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 1,
"rows_out": 0.571428573,
"cost": 0.001758432,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t1",
"rows_for_plan": 0.571428573,
"cost_for_plan": 0.001758432,
"pushdown_cond_selectivity": 0.571428573,
"filtered": 8.163265322,
"rows_out": 0.571428573,
"cost_for_sorting": 3.585611e-4
}
]
},
{
"best_join_order": ["t1"],
"rows": 0.571428573,
"cost": 0.002116993
},
{
"substitute_best_equal": {
"condition": "WHERE",
"resulting_condition": "t1.b = 2 and t1.c = 3"
}
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [],
"attached_conditions_summary": [
{
"table": "t1",
"attached_condition": "t1.b = 2 and t1.c = 3"
}
]
}
},
{
"make_join_readinfo": []
},
{
"test_if_skip_sort_order": [
{
"reconsidering_access_paths_for_index_ordering": {
"clause": "GROUP BY",
"table": "t1",
"rows_estimation": 1,
"filesort_cost": 4.579083e-5,
"read_cost": 0.001804223,
"filesort_type": "priority_queue with addon fields",
"fanout": 1,
"possible_keys": [
{
"index": "a",
"can_resolve_order": true,
"direction": 1,
"rows_to_examine": 7,
"range_scan": false,
"scan_cost": 0.001758432,
"chosen": true
}
]
}
}
]
},
{
"prepare_sum_aggregators": {
"function": "min(t1.d)",
"aggregator_type": "simple"
}
}
]
}
}
]
} 0 0
DROP TABLE t1;
CREATE TABLE t1 (id INT NOT NULL, a DATE, KEY(id,a));
INSERT INTO t1 values (1,'2001-01-01'),(1,'2001-01-02'),
(1,'2001-01-03'),(1,'2001-01-04'),
(2,'2001-01-01'),(2,'2001-01-02'),
(2,'2001-01-03'),(2,'2001-01-04'),
(3,'2001-01-01'),(3,'2001-01-02'),
(3,'2001-01-03'),(3,'2001-01-04'),
(4,'2001-01-01'),(4,'2001-01-02'),
(4,'2001-01-03'),(4,'2001-01-04');
set optimizer_trace='enabled=on';
EXPLAIN SELECT id,MIN(a),MAX(a) FROM t1 WHERE a>=20010104e0 GROUP BY id;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range NULL id 8 NULL 9 Using where; Using index for group-by
select * from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
EXPLAIN SELECT id,MIN(a),MAX(a) FROM t1 WHERE a>=20010104e0 GROUP BY id {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"expanded_query": "select t1.`id` AS `id`,min(t1.a) AS `MIN(a)`,max(t1.a) AS `MAX(a)` from t1 where t1.a >= 20010104e0 group by t1.`id`"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"condition_processing": {
"condition": "WHERE",
"original_condition": "t1.a >= 20010104e0",
"steps": [
{
"transformation": "equality_propagation",
"resulting_condition": "t1.a >= 20010104e0"
},
{
"transformation": "constant_propagation",
"resulting_condition": "t1.a >= 20010104e0"
},
{
"transformation": "trivial_condition_removal",
"resulting_condition": "t1.a >= 20010104e0"
}
]
}
},
{
"ref_optimizer_key_uses": []
},
{
"rows_estimation": [
{
"table": "t1",
"range_analysis": {
"table_scan": {
"rows": 16,
"cost": 0.01253808
},
"potential_range_indexes": [
{
"index": "id",
"usable": true,
"key_parts": ["id", "a"]
}
],
"best_covering_index_scan": {
"index": "id",
"cost": 0.008002862,
"chosen": true
},
"setup_range_conditions": [],
"analyzing_range_alternatives": {
"range_scan_alternatives": [],
"analyzing_roworder_intersect": {
"cause": "too few roworder scans"
},
"analyzing_index_merge_union": []
},
"group_index_range": {
"potential_group_range_indexes": [
{
"index": "id",
"covering": true,
"ranges": ["(2001-01-04) <= (a)"],
"rows": 9,
"cost": 0.005620843
}
]
},
"best_group_range_summary": {
"type": "index_group",
"index": "id",
"min_max_arg": "a",
"min_aggregate": true,
"max_aggregate": true,
"distinct_aggregate": false,
"rows": 9,
"cost": 0.005620843,
"key_parts_used_for_access": ["id"],
"ranges": ["(2001-01-04) <= (a)"],
"chosen": true
},
"chosen_range_access_summary": {
"range_access_plan": {
"type": "index_group",
"index": "id",
"min_max_arg": "a",
"min_aggregate": true,
"max_aggregate": true,
"distinct_aggregate": false,
"rows": 9,
"cost": 0.005620843,
"key_parts_used_for_access": ["id"],
"ranges": ["(2001-01-04) <= (a)"]
},
"rows_for_plan": 9,
"cost_for_plan": 0.005620843,
"chosen": true
}
}
}
]
},
{
"table_dependencies": [
{
"table": "t1",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "index_merge",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.005620843,
"chosen": true,
"use_tmp_table": true
}
],
"chosen_access_method": {
"type": "index_merge",
"rows_read": 9,
"rows_out": 9,
"cost": 0.005620843,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t1",
"rows_for_plan": 9,
"cost_for_plan": 0.005620843,
"cost_for_sorting": 0.005728198
}
]
},
{
"best_join_order": ["t1"],
"rows": 9,
"cost": 0.011349041
},
{
"substitute_best_equal": {
"condition": "WHERE",
"resulting_condition": "t1.a >= 20010104e0"
}
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [],
"attached_conditions_summary": [
{
"table": "t1",
"attached_condition": "t1.a >= 20010104e0"
}
]
}
},
{
"make_join_readinfo": []
},
{
"test_if_skip_sort_order": []
},
{
"prepare_sum_aggregators": {
"function": "min(t1.a)",
"aggregator_type": "simple"
}
},
{
"prepare_sum_aggregators": {
"function": "max(t1.a)",
"aggregator_type": "simple"
}
}
]
}
}
]
} 0 0
EXPLAIN SELECT * FROM t1 WHERE a = 20010104e0 GROUP BY id;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range NULL id 8 NULL 9 Using where; Using index for group-by
select * from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
EXPLAIN SELECT * FROM t1 WHERE a = 20010104e0 GROUP BY id {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"expanded_query": "select t1.`id` AS `id`,t1.a AS a from t1 where t1.a = 20010104e0 group by t1.`id`"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"condition_processing": {
"condition": "WHERE",
"original_condition": "t1.a = 20010104e0",
"steps": [
{
"transformation": "equality_propagation",
"resulting_condition": "t1.a = 20010104e0"
},
{
"transformation": "constant_propagation",
"resulting_condition": "t1.a = 20010104e0"
},
{
"transformation": "trivial_condition_removal",
"resulting_condition": "t1.a = 20010104e0"
}
]
}
},
{
"ref_optimizer_key_uses": []
},
{
"rows_estimation": [
{
"table": "t1",
"range_analysis": {
"table_scan": {
"rows": 16,
"cost": 0.01253808
},
"potential_range_indexes": [
{
"index": "id",
"usable": true,
"key_parts": ["id", "a"]
}
],
"best_covering_index_scan": {
"index": "id",
"cost": 0.008002862,
"chosen": true
},
"setup_range_conditions": [],
"analyzing_range_alternatives": {
"range_scan_alternatives": [],
"analyzing_roworder_intersect": {
"cause": "too few roworder scans"
},
"analyzing_index_merge_union": []
},
"group_index_range": {
"potential_group_range_indexes": [
{
"index": "id",
"covering": true,
"ranges": ["(2001-01-04) <= (a) <= (2001-01-04)"],
"rows": 9,
"cost": 0.005620843
}
]
},
"best_group_range_summary": {
"type": "index_group",
"index": "id",
"min_max_arg": null,
"min_aggregate": false,
"max_aggregate": false,
"distinct_aggregate": false,
"rows": 9,
"cost": 0.005620843,
"key_parts_used_for_access": ["id", "a"],
"ranges": ["(2001-01-04) <= (a) <= (2001-01-04)"],
"chosen": true
},
"chosen_range_access_summary": {
"range_access_plan": {
"type": "index_group",
"index": "id",
"min_max_arg": null,
"min_aggregate": false,
"max_aggregate": false,
"distinct_aggregate": false,
"rows": 9,
"cost": 0.005620843,
"key_parts_used_for_access": ["id", "a"],
"ranges": ["(2001-01-04) <= (a) <= (2001-01-04)"]
},
"rows_for_plan": 9,
"cost_for_plan": 0.005620843,
"chosen": true
}
}
}
]
},
{
"table_dependencies": [
{
"table": "t1",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "index_merge",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.005620843,
"chosen": true,
"use_tmp_table": true
}
],
"chosen_access_method": {
"type": "index_merge",
"rows_read": 9,
"rows_out": 9,
"cost": 0.005620843,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t1",
"rows_for_plan": 9,
"cost_for_plan": 0.005620843,
"cost_for_sorting": 0.005728198
}
]
},
{
"best_join_order": ["t1"],
"rows": 9,
"cost": 0.011349041
},
{
"substitute_best_equal": {
"condition": "WHERE",
"resulting_condition": "t1.a = 20010104e0"
}
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [],
"attached_conditions_summary": [
{
"table": "t1",
"attached_condition": "t1.a = 20010104e0"
}
]
}
},
{
"make_join_readinfo": []
},
{
"test_if_skip_sort_order": []
}
]
}
}
]
} 0 0
drop table t1;
#
# Late ORDER BY optimization
#
create table t1 (
pk int not null,
a int,
b int,
c int,
filler char(100),
KEY c(c),
KEY a_c(a,c),
KEY a_b(a,b)
) charset=latin1;
insert into t1 select seq, seq,seq,seq, 'filler-dataaa' from seq_0_to_999;
update t1 set a=1 where pk between 0 and 180;
update t1 set b=2 where pk between 0 and 20;
analyze table t1;
Table Op Msg_type Msg_text
test.t1 analyze status Engine-independent statistics collected
test.t1 analyze status OK
explain select * from t1 where a=1 and b=2 order by c limit 1;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ref a_c,a_b a_b 10 const,const 21 Using where; Using filesort
update t1 set b=2 where pk between 20 and 40;
set optimizer_trace='enabled=on';
explain select * from t1 where a=1 and b=2 order by c limit 1;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range a_c,a_b a_c 5 NULL 180 Using where
select * from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
explain select * from t1 where a=1 and b=2 order by c limit 1 {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"expanded_query": "select t1.pk AS pk,t1.a AS a,t1.b AS b,t1.c AS c,t1.filler AS filler from t1 where t1.a = 1 and t1.b = 2 order by t1.c limit 1"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"condition_processing": {
"condition": "WHERE",
"original_condition": "t1.a = 1 and t1.b = 2",
"steps": [
{
"transformation": "equality_propagation",
"resulting_condition": "multiple equal(1, t1.a) and multiple equal(2, t1.b)"
},
{
"transformation": "constant_propagation",
"resulting_condition": "multiple equal(1, t1.a) and multiple equal(2, t1.b)"
},
{
"transformation": "trivial_condition_removal",
"resulting_condition": "multiple equal(1, t1.a) and multiple equal(2, t1.b)"
}
]
}
},
{
"ref_optimizer_key_uses": [
{
"table": "t1",
"index": "a_c",
"field": "a",
"equals": "1",
"null_rejecting": true
},
{
"table": "t1",
"index": "a_b",
"field": "a",
"equals": "1",
"null_rejecting": true
},
{
"table": "t1",
"index": "a_b",
"field": "b",
"equals": "2",
"null_rejecting": true
}
]
},
{
"rows_estimation": [
{
"table": "t1",
"range_analysis": {
"table_scan": {
"rows": 1000,
"cost": 0.1731718
},
"potential_range_indexes": [
{
"index": "c",
"usable": false,
"cause": "not applicable"
},
{
"index": "a_c",
"usable": true,
"key_parts": ["a", "c"]
},
{
"index": "a_b",
"usable": true,
"key_parts": ["a", "b"]
}
],
"setup_range_conditions": [],
"analyzing_range_alternatives": {
"range_scan_alternatives": [
{
"index": "a_c",
"ranges": ["(1) <= (a) <= (1)"],
"rowid_ordered": false,
"using_mrr": false,
"index_only": false,
"rows": 180,
"cost": 0.223437104,
"chosen": false,
"cause": "cost"
},
{
"index": "a_b",
"ranges": ["(1,2) <= (a,b) <= (1,2)"],
"rowid_ordered": true,
"using_mrr": false,
"index_only": false,
"rows": 41,
"cost": 0.051929313,
"chosen": true
}
],
"analyzing_roworder_intersect": {
"cause": "too few roworder scans"
},
"analyzing_index_merge_union": []
},
"group_index_range": {
"chosen": false,
"cause": "no group by or distinct"
},
"chosen_range_access_summary": {
"range_access_plan": {
"type": "range_scan",
"index": "a_b",
"rows": 41,
"ranges": ["(1,2) <= (a,b) <= (1,2)"]
},
"rows_for_plan": 41,
"cost_for_plan": 0.051929313,
"chosen": true
}
}
},
{
"table": "t1",
"rowid_filters": [
{
"key": "a_b",
"build_cost": 0.005839142,
"rows": 41
},
{
"key": "a_c",
"build_cost": 0.023974342,
"rows": 180
}
]
},
{
"selectivity_for_indexes": [
{
"index_name": "a_b",
"selectivity_from_index": 0.041
}
],
"selectivity_for_columns": [
{
"column_name": "a",
"ranges": ["1 <= a <= 1"],
"selectivity_from_histogram": 0.181
},
{
"column_name": "b",
"ranges": ["2 <= b <= 2"],
"selectivity_from_histogram": 0.021
}
],
"cond_selectivity": 0.041
}
]
},
{
"table_dependencies": [
{
"table": "t1",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "ref",
"index": "a_c",
"used_range_estimates": true,
"rows": 180,
"cost": 0.222886962,
"chosen": true
},
{
"access_type": "ref",
"index": "a_b",
"used_range_estimates": true,
"rows": 41,
"cost": 0.051379171,
"chosen": true
},
{
"type": "scan",
"chosen": false,
"cause": "cost"
}
],
"chosen_access_method": {
"type": "ref",
"index": "a_b",
"rows_read": 41,
"rows_out": 41,
"cost": 0.051379171,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t1",
"rows_for_plan": 41,
"cost_for_plan": 0.051379171
}
]
},
{
"best_join_order": ["t1"],
"rows": 41,
"cost": 0.051379171
},
{
"substitute_best_equal": {
"condition": "WHERE",
"resulting_condition": "t1.a = 1 and t1.b = 2"
}
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [],
"attached_conditions_summary": [
{
"table": "t1",
"attached_condition": null
}
]
}
},
{
"make_join_readinfo": []
},
{
"test_if_skip_sort_order": [
{
"reconsidering_access_paths_for_index_ordering": {
"clause": "ORDER BY",
"table": "t1",
"rows_estimation": 41,
"filesort_cost": 9.387121e-4,
"read_cost": 0.052317883,
"filesort_type": "priority_queue with addon fields",
"fanout": 1,
"possible_keys": [
{
"index": "c",
"can_resolve_order": true,
"direction": 1,
"rows_to_examine": 24,
"range_scan": false,
"scan_cost": 0.030403398,
"chosen": true
},
{
"index": "a_c",
"can_resolve_order": true,
"direction": 1,
"rows_to_examine": 4.390243902,
"range_scan": true,
"scan_cost": 0.023390252,
"chosen": true
},
{
"index": "a_b",
"can_resolve_order": false,
"cause": "not usable index for the query"
}
]
}
},
{
"table": "t1",
"range_analysis": {
"potential_range_indexes": [
{
"index": "c",
"usable": false,
"cause": "not applicable"
},
{
"index": "a_c",
"usable": true,
"key_parts": ["a", "c"]
},
{
"index": "a_b",
"usable": false,
"cause": "not applicable"
}
],
"setup_range_conditions": [],
"analyzing_range_alternatives": {
"range_scan_alternatives": [
{
"index": "a_c",
"ranges": ["(1) <= (a) <= (1)"],
"rowid_ordered": false,
"using_mrr": false,
"index_only": false,
"rows": 180,
"cost": 0.223437104,
"cost_with_limit": 0.002574553,
"chosen": true
}
],
"analyzing_roworder_intersect": {
"cause": "too few roworder scans"
},
"analyzing_index_merge_union": []
},
"group_index_range": {
"chosen": false,
"cause": "no group by or distinct"
},
"chosen_range_access_summary": {
"range_access_plan": {
"type": "range_scan",
"index": "a_c",
"rows": 180,
"ranges": ["(1) <= (a) <= (1)"]
},
"rows_for_plan": 180,
"cost_for_plan": 0.223437104,
"chosen": true
}
}
}
]
}
]
}
}
]
} 0 0
drop table t1;
#
# TABLE ELIMINATION
#
create table t1 (a int);
insert into t1 values (0),(1),(2),(3);
create table t0 as select * from t1;
create table t2 (a int primary key, b int)
as select a, a as b from t1 where a in (1,2);
create table t3 (a int primary key, b int)
as select a, a as b from t1 where a in (1,3);
set optimizer_trace='enabled=on';
analyze table t1;
Table Op Msg_type Msg_text
test.t1 analyze status Engine-independent statistics collected
test.t1 analyze status OK
analyze table t2;
Table Op Msg_type Msg_text
test.t2 analyze status Engine-independent statistics collected
test.t2 analyze status OK
analyze table t3;
Table Op Msg_type Msg_text
test.t3 analyze status Engine-independent statistics collected
test.t3 analyze status OK
# table t2 should be eliminated
explain
select t1.a from t1 left join t2 on t1.a=t2.a;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ALL NULL NULL NULL NULL 4
select * from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
explain
select t1.a from t1 left join t2 on t1.a=t2.a {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"expanded_query": "select t1.a AS a from (t1 left join t2 on(t1.a = t2.a))"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"build_equal_items": {
"condition": "ON expr",
"attached_to": "t2",
"resulting_condition": "multiple equal(t1.a, t2.a)"
}
},
{
"ref_optimizer_key_uses": [
{
"table": "t2",
"index": "PRIMARY",
"field": "a",
"equals": "t1.a",
"null_rejecting": true
}
]
},
{
"eliminated_tables": ["t2"]
},
{
"rows_estimation": [
{
"table": "t1",
"table_scan": {
"rows": 4,
"read_cost": 0.01053322,
"read_and_compare_cost": 0.01066122
}
},
{
"table": "t2",
"rows": 1,
"cost": 1,
"table_type": "const"
}
]
},
{
"table_dependencies": [
{
"table": "t1",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
},
{
"table": "t2",
"row_may_be_null": true,
"map_bit": 1,
"depends_on_map_bits": ["0"]
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 4,
"rows_after_filter": 4,
"rows_out": 4,
"cost": 0.01066122,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 4,
"rows_out": 4,
"cost": 0.01066122,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t1",
"rows_for_plan": 4,
"cost_for_plan": 0.01066122
}
]
},
{
"best_join_order": ["t2", "t1"],
"rows": 4,
"cost": 0.01066122
},
{
"substitute_best_equal": {
"condition": "WHERE",
"resulting_condition": "1"
}
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [
{
"condition_on_constant_tables": "1",
"computing_condition": []
}
],
"attached_conditions_summary": [
{
"table": "t1",
"attached_condition": null
}
]
}
},
{
"make_join_readinfo": []
}
]
}
}
]
} 0 0
# no tables should be eliminated
explain select * from t1 left join t2 on t2.a=t1.a;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ALL NULL NULL NULL NULL 4
1 SIMPLE t2 eq_ref PRIMARY PRIMARY 4 test.t1.a 1 Using where
select * from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
explain select * from t1 left join t2 on t2.a=t1.a {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"expanded_query": "select t1.a AS a,t2.a AS a,t2.b AS b from (t1 left join t2 on(t2.a = t1.a))"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"build_equal_items": {
"condition": "ON expr",
"attached_to": "t2",
"resulting_condition": "multiple equal(t2.a, t1.a)"
}
},
{
"ref_optimizer_key_uses": [
{
"table": "t2",
"index": "PRIMARY",
"field": "a",
"equals": "t1.a",
"null_rejecting": true
}
]
},
{
"eliminated_tables": []
},
{
"rows_estimation": [
{
"table": "t1",
"table_scan": {
"rows": 4,
"read_cost": 0.01053322,
"read_and_compare_cost": 0.01066122
}
},
{
"table": "t2",
"table_scan": {
"rows": 2,
"read_cost": 0.01028441,
"read_and_compare_cost": 0.01034841
}
}
]
},
{
"table_dependencies": [
{
"table": "t1",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
},
{
"table": "t2",
"row_may_be_null": true,
"map_bit": 1,
"depends_on_map_bits": ["0"]
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 4,
"rows_after_filter": 4,
"rows_out": 4,
"cost": 0.01066122,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 4,
"rows_out": 4,
"cost": 0.01066122,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t1",
"rows_for_plan": 4,
"cost_for_plan": 0.01066122,
"rest_of_plan": [
{
"plan_prefix": "t1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t2",
"plan_details": {
"record_count": 4
},
"considered_access_paths": [
{
"access_type": "eq_ref",
"index": "PRIMARY",
"rows": 1,
"cost": 0.007120904,
"chosen": true
},
{
"type": "scan",
"chosen": false,
"cause": "cost"
}
],
"chosen_access_method": {
"type": "eq_ref",
"index": "PRIMARY",
"rows_read": 1,
"rows_out": 1,
"cost": 0.007120904,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "t1",
"table": "t2",
"rows_for_plan": 4,
"cost_for_plan": 0.017782124
}
]
}
]
},
{
"best_join_order": ["t1", "t2"],
"rows": 4,
"cost": 0.017782124
},
{
"substitute_best_equal": {
"condition": "WHERE",
"resulting_condition": "1"
}
},
{
"substitute_best_equal": {
"condition": "ON expr",
"attached_to": "t2",
"resulting_condition": "t2.a = t1.a"
}
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [
{
"condition_on_constant_tables": "1",
"computing_condition": []
}
],
"attached_conditions_summary": [
{
"table": "t1",
"attached_condition": null
},
{
"table": "t2",
"attached_condition": "trigcond(trigcond(t1.a is not null))"
}
]
}
},
{
"make_join_readinfo": []
}
]
}
}
]
} 0 0
# multiple tables are eliminated
explain select t1.a from t1 left join (t2 join t3 on t2.b=t3.b) on t2.a=t1.a and t3.a=t1.a;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ALL NULL NULL NULL NULL 4
select * from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
explain select t1.a from t1 left join (t2 join t3 on t2.b=t3.b) on t2.a=t1.a and t3.a=t1.a {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"expanded_query": "select t1.a AS a from (t1 left join (t2 join t3 on(t2.b = t3.b)) on(t2.a = t1.a and t3.a = t1.a))"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"build_equal_items": {
"condition": "ON expr",
"attached_to": "t3",
"resulting_condition": "multiple equal(t2.a, t1.a, t3.a) and multiple equal(t2.b, t3.b)"
}
},
{
"ref_optimizer_key_uses": [
{
"table": "t2",
"index": "PRIMARY",
"field": "a",
"equals": "t1.a",
"null_rejecting": true
},
{
"table": "t2",
"index": "PRIMARY",
"field": "a",
"equals": "t3.a",
"null_rejecting": true
},
{
"table": "t3",
"index": "PRIMARY",
"field": "a",
"equals": "t2.a",
"null_rejecting": true
},
{
"table": "t3",
"index": "PRIMARY",
"field": "a",
"equals": "t1.a",
"null_rejecting": true
}
]
},
{
"eliminated_tables": ["t3", "t2"]
},
{
"rows_estimation": [
{
"table": "t1",
"table_scan": {
"rows": 4,
"read_cost": 0.01053322,
"read_and_compare_cost": 0.01066122
}
},
{
"table": "t2",
"rows": 1,
"cost": 1,
"table_type": "const"
},
{
"table": "t3",
"rows": 1,
"cost": 1,
"table_type": "const"
}
]
},
{
"table_dependencies": [
{
"table": "t1",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
},
{
"table": "t2",
"row_may_be_null": true,
"map_bit": 1,
"depends_on_map_bits": ["0"]
},
{
"table": "t3",
"row_may_be_null": true,
"map_bit": 2,
"depends_on_map_bits": ["0"]
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 4,
"rows_after_filter": 4,
"rows_out": 4,
"cost": 0.01066122,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 4,
"rows_out": 4,
"cost": 0.01066122,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t1",
"rows_for_plan": 4,
"cost_for_plan": 0.01066122
}
]
},
{
"best_join_order": ["t3", "t2", "t1"],
"rows": 4,
"cost": 0.01066122
},
{
"substitute_best_equal": {
"condition": "WHERE",
"resulting_condition": "1"
}
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [
{
"condition_on_constant_tables": "1",
"computing_condition": []
}
],
"attached_conditions_summary": [
{
"table": "t1",
"attached_condition": null
}
]
}
},
{
"make_join_readinfo": []
}
]
}
}
]
} 0 0
drop table t0, t1, t2, t3;
#
# IN subquery to semi-join is traced
#
create table t1(a int, b int);
insert into t1 select seq,seq from seq_0_to_3;
create table t2 (p int, a int);
insert into t2 select seq,seq from seq_1_to_10;
set optimizer_trace='enabled=on';
explain extended select * from t1 where a in (select p from t2);
id select_type table type possible_keys key key_len ref rows filtered Extra
1 PRIMARY t1 ALL NULL NULL NULL NULL 4 100.00
1 PRIMARY t2 ALL NULL NULL NULL NULL 10 10.00 Using where; FirstMatch(t1); Using join buffer (flat, BNL join)
Warnings:
Note 1003 select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b` from `test`.`t1` semi join (`test`.`t2`) where `test`.`t2`.`p` = `test`.`t1`.`a`
insert into t2 select seq,seq from seq_10_to_100;
explain extended select * from t1 where a in (select p from t2);
id select_type table type possible_keys key key_len ref rows filtered Extra
1 PRIMARY t1 ALL NULL NULL NULL NULL 4 100.00
1 PRIMARY t2 ALL NULL NULL NULL NULL 101 0.99 Using where; FirstMatch(t1); Using join buffer (flat, BNL join)
Warnings:
Note 1003 select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b` from `test`.`t1` semi join (`test`.`t2`) where `test`.`t2`.`p` = `test`.`t1`.`a`
select * from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
explain extended select * from t1 where a in (select p from t2) {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"join_preparation": {
"select_id": 2,
"steps": [
{
"transformation": {
"select_id": 2,
"from": "IN (SELECT)",
"to": "semijoin",
"chosen": true
}
},
{
"expanded_query": "/* select#2 */ select t2.p from t2"
}
]
}
},
{
"expanded_query": "/* select#1 */ select t1.a AS a,t1.b AS b from t1 where t1.a in (/* select#2 */ select t2.p from t2)"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"transformation": {
"select_id": 2,
"from": "IN (SELECT)",
"to": "materialization",
"sjm_scan_allowed": true,
"possible": true
}
},
{
"transformation": {
"select_id": 2,
"from": "IN (SELECT)",
"to": "semijoin",
"converted_to_semi_join": true
}
},
{
"condition_processing": {
"condition": "WHERE",
"original_condition": "1 and t1.a = t2.p",
"steps": [
{
"transformation": "equality_propagation",
"resulting_condition": "1 and multiple equal(t1.a, t2.p)"
},
{
"transformation": "constant_propagation",
"resulting_condition": "1 and multiple equal(t1.a, t2.p)"
},
{
"transformation": "trivial_condition_removal",
"resulting_condition": "multiple equal(t1.a, t2.p)"
}
]
}
},
{
"ref_optimizer_key_uses": []
},
{
"rows_estimation": [
{
"table": "t1",
"table_scan": {
"rows": 4,
"read_cost": 0.01053322,
"read_and_compare_cost": 0.01066122
}
},
{
"table": "t2",
"table_scan": {
"rows": 101,
"read_cost": 0.022600505,
"read_and_compare_cost": 0.025832505
}
}
]
},
{
"semijoin_table_pullout": {
"pulled_out_tables": []
}
},
{
"table_dependencies": [
{
"table": "t1",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
},
{
"table": "t2",
"row_may_be_null": false,
"map_bit": 1,
"depends_on_map_bits": []
}
]
},
{
"execution_plan_for_potential_materialization": {
"steps": [
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t2",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 101,
"rows_after_filter": 101,
"rows_out": 101,
"cost": 0.025832505,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 101,
"rows_out": 101,
"cost": 0.025832505,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t2",
"rows_for_plan": 101,
"cost_for_plan": 0.025832505
}
]
}
]
}
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 4,
"rows_after_filter": 4,
"rows_out": 4,
"cost": 0.01066122,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 4,
"rows_out": 4,
"cost": 0.01066122,
"uses_join_buffering": false
}
}
},
{
"best_access_path": {
"table": "t2",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 101,
"rows_after_filter": 101,
"rows_out": 101,
"cost": 0.025832505,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 101,
"rows_out": 101,
"cost": 0.025832505,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t1",
"rows_for_plan": 4,
"cost_for_plan": 0.01066122,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t2",
"plan_details": {
"record_count": 4
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 101,
"rows_after_filter": 101,
"rows_out": 101,
"cost": 0.063593833,
"cost_without_join_buffer": 0.10333002,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 101,
"rows_out": 101,
"cost": 0.063593833,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t1",
"table": "t2",
"rows_for_plan": 404,
"cost_for_plan": 0.074255053,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 4,
"cost": 0.074255053
},
{
"strategy": "SJ-Materialization",
"rows": 4,
"cost": 0.078768645
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 4,
"tmp_table_rows": 1,
"sj_inner_fanout": 101,
"rows": 4,
"dups_cost": 0.074255053,
"write_cost": 0.02564388,
"full_lookup_cost": 0.06503188,
"total_cost": 0.164930813
},
{
"chosen_strategy": "FirstMatch"
}
],
"sj_rows_out": 1,
"sj_rows_for_plan": 4,
"sj_filtered": 0.99009901
}
]
},
{
"plan_prefix": "",
"table": "t2",
"rows_for_plan": 101,
"cost_for_plan": 0.025832505,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 101
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 4,
"rows_after_filter": 4,
"rows_out": 4,
"cost": 0.05432655,
"cost_without_join_buffer": 1.07678322,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 4,
"rows_out": 4,
"cost": 0.05432655,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t2",
"table": "t1",
"rows_for_plan": 404,
"cost_for_plan": 0.080159055,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 404,
"cost": 0.137800225
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 1,
"tmp_table_rows": 4,
"sj_inner_fanout": 101,
"rows": 4,
"dups_cost": 0.080159055,
"write_cost": 0.02564388,
"full_lookup_cost": 0.06503188,
"total_cost": 0.170834815
},
{
"chosen_strategy": "SJ-Materialization-Scan"
}
],
"sj_rows_out": 4,
"sj_rows_for_plan": 404,
"sj_filtered": 100,
"pruned_by_cost": true,
"current_cost": 0.137800225,
"best_cost": 0.074255053
}
]
}
]
},
{
"fix_semijoin_strategies_for_picked_join_order": [
{
"semi_join_strategy": "FirstMatch",
"join_order": [
{
"table": "t2"
}
]
}
]
},
{
"best_join_order": ["t1", "t2"],
"rows": 4,
"cost": 0.074255053
},
{
"substitute_best_equal": {
"condition": "WHERE",
"resulting_condition": "t2.p = t1.a"
}
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [],
"attached_conditions_summary": [
{
"table": "t1",
"attached_condition": null
},
{
"table": "t2",
"attached_condition": "t2.p = t1.a"
}
]
}
},
{
"make_join_readinfo": []
}
]
}
}
]
} 0 0
drop table t1,t2;
#
# Selectivities for columns and indexes.
#
create table t1 (
pk int,
a int,
b int,
key pk(pk),
key pk_a(pk,a),
key pk_a_b(pk,a,b));
insert into t1 select seq,seq,seq from seq_0_to_9;
ANALYZE TABLE t1 PERSISTENT FOR COLUMNS (a,b) INDEXES ();
Table Op Msg_type Msg_text
test.t1 analyze status Engine-independent statistics collected
test.t1 analyze status Table is already up to date
set @save_optimizer_use_condition_selectivity=@@optimizer_use_condition_selectivity;
set @save_use_stat_tables= @@use_stat_tables;
set @@optimizer_use_condition_selectivity=4;
set @@use_stat_tables= PREFERABLY;
set optimizer_trace='enabled=on';
explain select * from t1 where pk = 2 and a=5 and b=1;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ref pk,pk_a,pk_a_b pk_a_b 15 const,const,const 1 Using index
select * from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
explain select * from t1 where pk = 2 and a=5 and b=1 {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"expanded_query": "select t1.pk AS pk,t1.a AS a,t1.b AS b from t1 where t1.pk = 2 and t1.a = 5 and t1.b = 1"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"condition_processing": {
"condition": "WHERE",
"original_condition": "t1.pk = 2 and t1.a = 5 and t1.b = 1",
"steps": [
{
"transformation": "equality_propagation",
"resulting_condition": "multiple equal(2, t1.pk) and multiple equal(5, t1.a) and multiple equal(1, t1.b)"
},
{
"transformation": "constant_propagation",
"resulting_condition": "multiple equal(2, t1.pk) and multiple equal(5, t1.a) and multiple equal(1, t1.b)"
},
{
"transformation": "trivial_condition_removal",
"resulting_condition": "multiple equal(2, t1.pk) and multiple equal(5, t1.a) and multiple equal(1, t1.b)"
}
]
}
},
{
"ref_optimizer_key_uses": [
{
"table": "t1",
"index": "pk",
"field": "pk",
"equals": "2",
"null_rejecting": true
},
{
"table": "t1",
"index": "pk_a",
"field": "pk",
"equals": "2",
"null_rejecting": true
},
{
"table": "t1",
"index": "pk_a",
"field": "a",
"equals": "5",
"null_rejecting": true
},
{
"table": "t1",
"index": "pk_a_b",
"field": "pk",
"equals": "2",
"null_rejecting": true
},
{
"table": "t1",
"index": "pk_a_b",
"field": "a",
"equals": "5",
"null_rejecting": true
},
{
"table": "t1",
"index": "pk_a_b",
"field": "b",
"equals": "1",
"null_rejecting": true
}
]
},
{
"rows_estimation": [
{
"table": "t1",
"range_analysis": {
"table_scan": {
"rows": 10,
"cost": 0.01159965
},
"potential_range_indexes": [
{
"index": "pk",
"usable": true,
"key_parts": ["pk"]
},
{
"index": "pk_a",
"usable": true,
"key_parts": ["pk", "a"]
},
{
"index": "pk_a_b",
"usable": true,
"key_parts": ["pk", "a", "b"]
}
],
"best_covering_index_scan": {
"index": "pk_a_b",
"cost": 0.007173242,
"chosen": true
},
"setup_range_conditions": [],
"analyzing_range_alternatives": {
"range_scan_alternatives": [
{
"index": "pk",
"ranges": ["(2) <= (pk) <= (2)"],
"rowid_ordered": true,
"using_mrr": false,
"index_only": false,
"rows": 1,
"cost": 0.002574553,
"chosen": true
},
{
"index": "pk_a",
"ranges": ["(2,5) <= (pk,a) <= (2,5)"],
"rowid_ordered": true,
"using_mrr": false,
"index_only": false,
"rows": 1,
"cost": 0.002574553,
"chosen": false,
"cause": "cost"
},
{
"index": "pk_a_b",
"ranges": ["(2,5,1) <= (pk,a,b) <= (2,5,1)"],
"rowid_ordered": true,
"using_mrr": false,
"index_only": true,
"rows": 1,
"cost": 0.001478954,
"chosen": true
}
],
"analyzing_roworder_intersect": {
"intersecting_indexes": [
{
"index": "pk",
"index_scan_cost": 0.000806227,
"cumulated_index_scan_cost": 0.000806227,
"disk_sweep_cost": 0.001143284,
"cumulative_total_cost": 0.001949511,
"usable": true,
"matching_rows_now": 1,
"intersect_covering_with_this_index": false,
"chosen": true
},
{
"index": "pk_a",
"usable": false,
"cause": "does not reduce cost of intersect"
},
{
"index": "pk_a_b",
"usable": false,
"cause": "does not reduce cost of intersect"
}
],
"clustered_pk": {
"clustered_pk_added_to_intersect": false,
"cause": "no clustered pk index"
},
"chosen": false,
"cause": "cost"
},
"analyzing_index_merge_union": []
},
"group_index_range": {
"chosen": false,
"cause": "no group by or distinct"
},
"chosen_range_access_summary": {
"range_access_plan": {
"type": "range_scan",
"index": "pk_a_b",
"rows": 1,
"ranges": ["(2,5,1) <= (pk,a,b) <= (2,5,1)"]
},
"rows_for_plan": 1,
"cost_for_plan": 0.001478954,
"chosen": true
}
}
},
{
"table": "t1",
"rowid_filters": [
{
"key": "pk",
"build_cost": 0.000899465,
"rows": 1
},
{
"key": "pk_a",
"build_cost": 0.000899465,
"rows": 1
},
{
"key": "pk_a_b",
"build_cost": 0.000899465,
"rows": 1
}
]
},
{
"selectivity_for_indexes": [
{
"index_name": "pk_a_b",
"selectivity_from_index": 0.1
}
],
"selectivity_for_columns": [
{
"column_name": "a",
"ranges": ["5 <= a <= 5"],
"selectivity_from_histogram": 0.1
},
{
"column_name": "b",
"ranges": ["1 <= b <= 1"],
"selectivity_from_histogram": 0.1
}
],
"cond_selectivity": 0.1
}
]
},
{
"table_dependencies": [
{
"table": "t1",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "ref",
"index": "pk",
"used_range_estimates": true,
"rows": 1,
"cost": 0.002024411,
"chosen": true
},
{
"access_type": "ref",
"index": "pk_a",
"used_range_estimates": true,
"rows": 1,
"cost": 0.002024411,
"chosen": false,
"cause": "cost"
},
{
"access_type": "ref",
"index": "pk_a_b",
"used_range_estimates": true,
"rows": 1,
"cost": 0.000928812,
"chosen": true
},
{
"type": "scan",
"chosen": false,
"cause": "cost"
}
],
"chosen_access_method": {
"type": "ref",
"index": "pk_a_b",
"rows_read": 1,
"rows_out": 1,
"cost": 0.000928812,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t1",
"rows_for_plan": 1,
"cost_for_plan": 0.000928812
}
]
},
{
"best_join_order": ["t1"],
"rows": 1,
"cost": 0.000928812
},
{
"substitute_best_equal": {
"condition": "WHERE",
"resulting_condition": "t1.pk = 2 and t1.a = 5 and t1.b = 1"
}
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [],
"attached_conditions_summary": [
{
"table": "t1",
"attached_condition": null
}
]
}
},
{
"make_join_readinfo": []
}
]
}
}
]
} 0 0
set @@optimizer_use_condition_selectivity=@save_optimizer_use_condition_selectivity;
set @@use_stat_tables= @save_use_stat_tables;
drop table t1;
set optimizer_trace="enabled=off";
#
# Tests added to show that sub-statements are not traced
#
create table t1(a int);
insert into t1 values (1),(2),(3),(4);
create table t2(a int);
insert into t2 values (1),(2),(3),(4);
create function f1(a int) returns int
begin
declare a int default 0;
set a= a+ (select count(*) from t2);
return a;
end|
create function f2(a int) returns int
begin
declare a int default 0;
select count(*) from t2 into a;
return a;
end|
set optimizer_trace='enabled=on';
select f1(a) from t1;
f1(a)
4
4
4
4
select * from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
select f1(a) from t1 {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"expanded_query": "select f1(t1.a) AS `f1(a)` from t1"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"rows_estimation": [
{
"table": "t1",
"table_scan": {
"rows": 4,
"read_cost": 0.01053322,
"read_and_compare_cost": 0.01066122
}
}
]
},
{
"table_dependencies": [
{
"table": "t1",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 4,
"rows_after_filter": 4,
"rows_out": 4,
"cost": 0.01066122,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 4,
"rows_out": 4,
"cost": 0.01066122,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t1",
"rows_for_plan": 4,
"cost_for_plan": 0.01066122
}
]
},
{
"best_join_order": ["t1"],
"rows": 4,
"cost": 0.01066122
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [],
"attached_conditions_summary": [
{
"table": "t1",
"attached_condition": null
}
]
}
},
{
"make_join_readinfo": []
}
]
}
}
]
} 0 0
select f2(a) from t1;
f2(a)
4
4
4
4
select * from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
select f2(a) from t1 {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"expanded_query": "select f2(t1.a) AS `f2(a)` from t1"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"rows_estimation": [
{
"table": "t1",
"table_scan": {
"rows": 4,
"read_cost": 0.01053322,
"read_and_compare_cost": 0.01066122
}
}
]
},
{
"table_dependencies": [
{
"table": "t1",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 4,
"rows_after_filter": 4,
"rows_out": 4,
"cost": 0.01066122,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 4,
"rows_out": 4,
"cost": 0.01066122,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t1",
"rows_for_plan": 4,
"cost_for_plan": 0.01066122
}
]
},
{
"best_join_order": ["t1"],
"rows": 4,
"cost": 0.01066122
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [],
"attached_conditions_summary": [
{
"table": "t1",
"attached_condition": null
}
]
}
},
{
"make_join_readinfo": []
}
]
}
}
]
} 0 0
drop table t1,t2;
drop function f1;
drop function f2;
set optimizer_trace='enabled=off';
#
# MDEV-18489: Limit the memory used by the optimizer trace
#
create table t1 (a int);
insert into t1 values (1),(2);
set optimizer_trace='enabled=on';
set @save_optimizer_trace_max_mem_size= @@optimizer_trace_max_mem_size;
select * from t1;
a
1
2
select length(trace) from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
length(trace)
2728
set optimizer_trace_max_mem_size=100;
select * from t1;
a
1
2
select * from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
select * from t1 {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
2628 0
set optimizer_trace_max_mem_size=0;
select * from t1;
a
1
2
select * from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
select * from t1 2728 0
drop table t1;
set optimizer_trace='enabled=off';
set @@optimizer_trace_max_mem_size= @save_optimizer_trace_max_mem_size;
#
# MDEV-18527: Optimizer trace for DELETE query shows table:null
#
create table ten(a int);
insert into ten values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
create table t0 (a int, b int);
insert into t0 select a,a from ten;
alter table t0 add key(a);
set optimizer_trace=1;
explain delete from t0 where t0.a<3;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t0 range a a 5 NULL 3 Using where
select * from information_schema.optimizer_trace;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
explain delete from t0 where t0.a<3 {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"expanded_query": "delete from t0 using dual where t0.a < 3"
}
]
}
},
{
"table": "t0",
"range_analysis": {
"table_scan": {
"rows": 10,
"cost": 0.01159965
},
"potential_range_indexes": [
{
"index": "a",
"usable": true,
"key_parts": ["a"]
}
],
"setup_range_conditions": [],
"analyzing_range_alternatives": {
"range_scan_alternatives": [
{
"index": "a",
"ranges": ["(NULL) < (a) < (3)"],
"rowid_ordered": false,
"using_mrr": false,
"index_only": false,
"rows": 3,
"cost": 0.005042291,
"chosen": true
}
],
"analyzing_index_merge_union": []
},
"group_index_range": {
"chosen": false,
"cause": "no group by or distinct"
},
"chosen_range_access_summary": {
"range_access_plan": {
"type": "range_scan",
"index": "a",
"rows": 3,
"ranges": ["(NULL) < (a) < (3)"]
},
"rows_for_plan": 3,
"cost_for_plan": 0.005042291,
"chosen": true
}
}
}
]
} 0 0
drop table ten,t0;
set optimizer_trace='enabled=off';
#
# MDEV-18528: Optimizer trace support for multi-table UPDATE and DELETE
#
set optimizer_trace=1;
create table ten(a int);
insert into ten values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
create table t0 (a int, b int);
insert into t0 select a,a from ten;
alter table t0 add key(a);
create table t1 like t0;
insert into t1 select * from t0;
explain delete t0,t1 from t0, t1 where t0.a=t1.a and t1.a<3;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t0 range a a 5 NULL 3 Using where
1 SIMPLE t1 ref a a 5 test.t0.a 1
select * from information_schema.optimizer_trace;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
explain delete t0,t1 from t0, t1 where t0.a=t1.a and t1.a<3 {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"expanded_query": "delete from t0,t1 using t0 join t1 where t0.a = t1.a and t1.a < 3"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"condition_processing": {
"condition": "WHERE",
"original_condition": "t0.a = t1.a and t1.a < 3",
"steps": [
{
"transformation": "equality_propagation",
"resulting_condition": "t1.a < 3 and multiple equal(t0.a, t1.a)"
},
{
"transformation": "constant_propagation",
"resulting_condition": "t1.a < 3 and multiple equal(t0.a, t1.a)"
},
{
"transformation": "trivial_condition_removal",
"resulting_condition": "t1.a < 3 and multiple equal(t0.a, t1.a)"
}
]
}
},
{
"ref_optimizer_key_uses": [
{
"table": "t0",
"index": "a",
"field": "a",
"equals": "t1.a",
"null_rejecting": true
},
{
"table": "t1",
"index": "a",
"field": "a",
"equals": "t0.a",
"null_rejecting": true
}
]
},
{
"rows_estimation": [
{
"table": "t0",
"range_analysis": {
"table_scan": {
"rows": 10,
"cost": 0.01159965
},
"potential_range_indexes": [
{
"index": "a",
"usable": true,
"key_parts": ["a"]
}
],
"best_covering_index_scan": {
"index": "a",
"cost": 0.007173242,
"chosen": true
},
"setup_range_conditions": [],
"analyzing_range_alternatives": {
"range_scan_alternatives": [
{
"index": "a",
"ranges": ["(NULL) < (a) < (3)"],
"rowid_ordered": false,
"using_mrr": false,
"index_only": true,
"rows": 3,
"cost": 0.001755494,
"chosen": true
}
],
"analyzing_roworder_intersect": {
"cause": "too few roworder scans"
},
"analyzing_index_merge_union": []
},
"group_index_range": {
"chosen": false,
"cause": "not single_table"
},
"chosen_range_access_summary": {
"range_access_plan": {
"type": "range_scan",
"index": "a",
"rows": 3,
"ranges": ["(NULL) < (a) < (3)"]
},
"rows_for_plan": 3,
"cost_for_plan": 0.001755494,
"chosen": true
}
}
},
{
"table": "t0",
"rowid_filters": [
{
"key": "a",
"build_cost": 0.001129926,
"rows": 3
}
]
},
{
"selectivity_for_indexes": [
{
"index_name": "a",
"selectivity_from_index": 0.3
}
],
"selectivity_for_columns": [],
"cond_selectivity": 0.3
},
{
"table": "t1",
"range_analysis": {
"table_scan": {
"rows": 10,
"cost": 0.01159965
},
"potential_range_indexes": [
{
"index": "a",
"usable": true,
"key_parts": ["a"]
}
],
"best_covering_index_scan": {
"index": "a",
"cost": 0.007173242,
"chosen": true
},
"setup_range_conditions": [],
"analyzing_range_alternatives": {
"range_scan_alternatives": [
{
"index": "a",
"ranges": ["(NULL) < (a) < (3)"],
"rowid_ordered": false,
"using_mrr": false,
"index_only": true,
"rows": 3,
"cost": 0.001755494,
"chosen": true
}
],
"analyzing_roworder_intersect": {
"cause": "too few roworder scans"
},
"analyzing_index_merge_union": []
},
"group_index_range": {
"chosen": false,
"cause": "not single_table"
},
"chosen_range_access_summary": {
"range_access_plan": {
"type": "range_scan",
"index": "a",
"rows": 3,
"ranges": ["(NULL) < (a) < (3)"]
},
"rows_for_plan": 3,
"cost_for_plan": 0.001755494,
"chosen": true
}
}
},
{
"table": "t1",
"rowid_filters": [
{
"key": "a",
"build_cost": 0.001129926,
"rows": 3
}
]
},
{
"selectivity_for_indexes": [
{
"index_name": "a",
"selectivity_from_index": 0.3
}
],
"selectivity_for_columns": [],
"cond_selectivity": 0.3
}
]
},
{
"table_dependencies": [
{
"table": "t0",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
},
{
"table": "t1",
"row_may_be_null": false,
"map_bit": 1,
"depends_on_map_bits": []
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t0",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "range",
"range_index": "a",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.001755494,
"chosen": true
}
],
"chosen_access_method": {
"type": "range",
"index": "a",
"rows_read": 3,
"rows_out": 3,
"cost": 0.001755494,
"uses_join_buffering": false
}
}
},
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "range",
"range_index": "a",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.001755494,
"chosen": true
}
],
"chosen_access_method": {
"type": "range",
"index": "a",
"rows_read": 3,
"rows_out": 3,
"cost": 0.001755494,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t0",
"rows_for_plan": 3,
"cost_for_plan": 0.001755494,
"rest_of_plan": [
{
"plan_prefix": "t0",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "ref",
"index": "a",
"used_range_estimates": false,
"reason": "not better than ref estimates",
"rows": 1,
"cost": 0.002376836,
"chosen": true
},
{
"type": "scan",
"chosen": false,
"cause": "cost"
}
],
"chosen_access_method": {
"type": "ref",
"index": "a",
"rows_read": 1,
"rows_out": 1,
"cost": 0.002376836,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "t0",
"table": "t1",
"rows_for_plan": 3,
"cost_for_plan": 0.00413233
}
]
},
{
"plan_prefix": "",
"table": "t1",
"rows_for_plan": 3,
"cost_for_plan": 0.001755494,
"rest_of_plan": [
{
"plan_prefix": "t1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t0",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "ref",
"index": "a",
"rec_per_key_stats_missing": true,
"used_range_estimates": false,
"reason": "not better than ref estimates",
"rows": 1.166666667,
"cost": 0.002392836,
"chosen": true
},
{
"type": "scan",
"chosen": false,
"cause": "cost"
}
],
"chosen_access_method": {
"type": "ref",
"index": "a",
"rows_read": 1.166666667,
"rows_out": 1.166666667,
"cost": 0.002392836,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "t1",
"table": "t0",
"rows_for_plan": 3.5,
"cost_for_plan": 0.00414833,
"pruned_by_cost": true,
"current_cost": 0.00414833,
"best_cost": 0.00413233
}
]
}
]
},
{
"best_join_order": ["t0", "t1"],
"rows": 3,
"cost": 0.00413233
},
{
"substitute_best_equal": {
"condition": "WHERE",
"resulting_condition": "t1.a = t0.a and t0.a < 3"
}
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [],
"attached_conditions_summary": [
{
"table": "t0",
"attached_condition": "t0.a < 3 and t0.a is not null"
},
{
"table": "t1",
"attached_condition": null
}
]
}
},
{
"make_join_readinfo": []
}
]
}
}
]
} 0 0
drop table ten,t0,t1;
set optimizer_trace='enabled=off';
#
# Merged to Materialized for derived tables
#
set optimizer_trace=1;
create table t1 (a int);
insert into t1 values (1),(2),(3);
explain select * from (select rand() from t1)q;
id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY <derived2> ALL NULL NULL NULL NULL 3
2 DERIVED t1 ALL NULL NULL NULL NULL 3
select * from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
explain select * from (select rand() from t1)q {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"derived": {
"table": "q",
"select_id": 2,
"algorithm": "materialized"
}
},
{
"join_preparation": {
"select_id": 2,
"steps": [
{
"expanded_query": "/* select#2 */ select rand() AS `rand()` from t1"
}
]
}
},
{
"expanded_query": "/* select#1 */ select q.`rand()` AS `rand()` from (/* select#2 */ select rand() AS `rand()` from t1) q"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"join_optimization": {
"select_id": 2,
"steps": [
{
"rows_estimation": [
{
"table": "t1",
"table_scan": {
"rows": 3,
"read_cost": 0.010408815,
"read_and_compare_cost": 0.010504815
}
}
]
},
{
"table_dependencies": [
{
"table": "t1",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.010504815,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.010504815,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t1",
"rows_for_plan": 3,
"cost_for_plan": 0.010504815
}
]
},
{
"best_join_order": ["t1"],
"rows": 3,
"cost": 0.010504815
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [],
"attached_conditions_summary": [
{
"table": "t1",
"attached_condition": null
}
]
}
},
{
"make_join_readinfo": []
}
]
}
},
{
"rows_estimation": [
{
"table": "<derived2>",
"table_scan": {
"rows": 3,
"read_cost": 0.010031052,
"read_and_compare_cost": 0.010134054
}
}
]
},
{
"table_dependencies": [
{
"table": "<derived2>",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "<derived2>",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.010134054,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.010134054,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "<derived2>",
"rows_for_plan": 3,
"cost_for_plan": 0.010134054
}
]
},
{
"best_join_order": ["<derived2>"],
"rows": 3,
"cost": 0.010134054
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [],
"attached_conditions_summary": [
{
"table": "<derived2>",
"attached_condition": null
}
]
}
},
{
"make_join_readinfo": []
}
]
}
}
]
} 0 0
drop table t1;
set optimizer_trace='enabled=off';
#
# Semi-join nest
#
set optimizer_trace=1;
create table t1 (a int);
insert into t1 values (1),(2),(3);
create table t2(a int);
insert into t2 values (1),(2),(3),(1),(2),(3),(1),(2),(3);
set @save_optimizer_switch= @@optimizer_switch;
explain select * from t1 where a in (select t_inner_1.a from t1 t_inner_1, t1 t_inner_2);
id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY t1 ALL NULL NULL NULL NULL 3
1 PRIMARY <subquery2> eq_ref distinct_key distinct_key 4 func 1
2 MATERIALIZED t_inner_1 ALL NULL NULL NULL NULL 3
2 MATERIALIZED t_inner_2 ALL NULL NULL NULL NULL 3 Using join buffer (flat, BNL join)
select * from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
explain select * from t1 where a in (select t_inner_1.a from t1 t_inner_1, t1 t_inner_2) {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"join_preparation": {
"select_id": 2,
"steps": [
{
"transformation": {
"select_id": 2,
"from": "IN (SELECT)",
"to": "semijoin",
"chosen": true
}
},
{
"expanded_query": "/* select#2 */ select t_inner_1.a from t1 t_inner_1 join t1 t_inner_2"
}
]
}
},
{
"expanded_query": "/* select#1 */ select t1.a AS a from t1 where t1.a in (/* select#2 */ select t_inner_1.a from t1 t_inner_1 join t1 t_inner_2)"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"transformation": {
"select_id": 2,
"from": "IN (SELECT)",
"to": "materialization",
"sjm_scan_allowed": true,
"possible": true
}
},
{
"transformation": {
"select_id": 2,
"from": "IN (SELECT)",
"to": "semijoin",
"converted_to_semi_join": true
}
},
{
"condition_processing": {
"condition": "WHERE",
"original_condition": "1 and t1.a = t_inner_1.a",
"steps": [
{
"transformation": "equality_propagation",
"resulting_condition": "1 and multiple equal(t1.a, t_inner_1.a)"
},
{
"transformation": "constant_propagation",
"resulting_condition": "1 and multiple equal(t1.a, t_inner_1.a)"
},
{
"transformation": "trivial_condition_removal",
"resulting_condition": "multiple equal(t1.a, t_inner_1.a)"
}
]
}
},
{
"ref_optimizer_key_uses": []
},
{
"rows_estimation": [
{
"table": "t1",
"table_scan": {
"rows": 3,
"read_cost": 0.010408815,
"read_and_compare_cost": 0.010504815
}
},
{
"table": "t_inner_1",
"table_scan": {
"rows": 3,
"read_cost": 0.010408815,
"read_and_compare_cost": 0.010504815
}
},
{
"table": "t_inner_2",
"table_scan": {
"rows": 3,
"read_cost": 0.010408815,
"read_and_compare_cost": 0.010504815
}
}
]
},
{
"semijoin_table_pullout": {
"pulled_out_tables": []
}
},
{
"table_dependencies": [
{
"table": "t1",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
},
{
"table": "t_inner_1",
"row_may_be_null": false,
"map_bit": 1,
"depends_on_map_bits": []
},
{
"table": "t_inner_2",
"row_may_be_null": false,
"map_bit": 2,
"depends_on_map_bits": []
}
]
},
{
"execution_plan_for_potential_materialization": {
"steps": [
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.010504815,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.010504815,
"uses_join_buffering": false
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.010504815,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.010504815,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t_inner_1",
"rows_for_plan": 3,
"cost_for_plan": 0.010504815,
"rest_of_plan": [
{
"plan_prefix": "t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.011523207,
"cost_without_join_buffer": 0.031514445,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.011523207,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 9,
"cost_for_plan": 0.022028022
}
]
},
{
"plan_prefix": "",
"table": "t_inner_2",
"rows_for_plan": 3,
"cost_for_plan": 0.010504815,
"rest_of_plan": [
{
"plan_prefix": "t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.011523207,
"cost_without_join_buffer": 0.031514445,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.011523207,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 9,
"cost_for_plan": 0.022028022,
"pruned_by_cost": true,
"current_cost": 0.022028022,
"best_cost": 0.022028022
}
]
}
]
}
]
}
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.010504815,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.010504815,
"uses_join_buffering": false
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.010504815,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.010504815,
"uses_join_buffering": false
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.010504815,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.010504815,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t1",
"rows_for_plan": 3,
"cost_for_plan": 0.010504815,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.011523207,
"cost_without_join_buffer": 0.031514445,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.011523207,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.011523207,
"cost_without_join_buffer": 0.031514445,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.011523207,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t1",
"table": "t_inner_1",
"rows_for_plan": 9,
"cost_for_plan": 0.022028022,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t1,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.015203373,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.015203373,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t1,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 27,
"cost_for_plan": 0.037231395,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 3,
"cost": 0.136562595
},
{
"strategy": "SJ-Materialization",
"rows": 3,
"cost": 0.059588485
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 1,
"sj_inner_fanout": 9,
"rows": 3,
"dups_cost": 0.037231395,
"write_cost": 0.02548291,
"full_lookup_cost": 0.00434619,
"total_cost": 0.067060495
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 3,
"sj_filtered": 11.11111111
}
]
},
{
"plan_prefix": "t1",
"table": "t_inner_2",
"rows_for_plan": 9,
"cost_for_plan": 0.022028022,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.015203373,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.015203373,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t1,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 27,
"cost_for_plan": 0.037231395,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 3,
"cost": 0.136562595
},
{
"strategy": "SJ-Materialization",
"rows": 3,
"cost": 0.059588485
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 1,
"sj_inner_fanout": 9,
"rows": 3,
"dups_cost": 0.037231395,
"write_cost": 0.02548291,
"full_lookup_cost": 0.00434619,
"total_cost": 0.067060495
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 3,
"sj_filtered": 11.11111111,
"pruned_by_cost": true,
"current_cost": 0.059588485,
"best_cost": 0.059588485
}
]
}
]
},
{
"plan_prefix": "",
"table": "t_inner_1",
"rows_for_plan": 3,
"cost_for_plan": 0.010504815,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.011523207,
"cost_without_join_buffer": 0.031514445,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.011523207,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.011523207,
"cost_without_join_buffer": 0.031514445,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.011523207,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1",
"table": "t1",
"rows_for_plan": 9,
"cost_for_plan": 0.022028022,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.015203373,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.015203373,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t1",
"table": "t_inner_2",
"rows_for_plan": 27,
"cost_for_plan": 0.037231395,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 1,
"tmp_table_rows": 3,
"sj_inner_fanout": 9,
"rows": 3,
"dups_cost": 0.037231395,
"write_cost": 0.02548291,
"full_lookup_cost": 0.00434619,
"total_cost": 0.067060495
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 3,
"sj_filtered": 11.11111111,
"pruned_by_cost": true,
"current_cost": 0.067060495,
"best_cost": 0.059588485
}
]
},
{
"plan_prefix": "t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 9,
"cost_for_plan": 0.022028022,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.015203373,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.015203373,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_2",
"table": "t1",
"rows_for_plan": 27,
"cost_for_plan": 0.037231395,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 9,
"cost": 0.070751357
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 1,
"tmp_table_rows": 3,
"sj_inner_fanout": 9,
"rows": 3,
"dups_cost": 0.037231395,
"write_cost": 0.02548291,
"full_lookup_cost": 0.00434619,
"total_cost": 0.067060495
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 3,
"sj_filtered": 11.11111111,
"pruned_by_cost": true,
"current_cost": 0.067060495,
"best_cost": 0.059588485
}
]
}
]
},
{
"plan_prefix": "",
"table": "t_inner_2",
"rows_for_plan": 3,
"cost_for_plan": 0.010504815,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.011523207,
"cost_without_join_buffer": 0.031514445,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.011523207,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.011523207,
"cost_without_join_buffer": 0.031514445,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.011523207,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_2",
"table": "t1",
"rows_for_plan": 9,
"cost_for_plan": 0.022028022,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_2,t1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.015203373,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.015203373,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_2,t1",
"table": "t_inner_1",
"rows_for_plan": 27,
"cost_for_plan": 0.037231395,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 1,
"tmp_table_rows": 3,
"sj_inner_fanout": 9,
"rows": 3,
"dups_cost": 0.037231395,
"write_cost": 0.02548291,
"full_lookup_cost": 0.00434619,
"total_cost": 0.067060495
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 3,
"sj_filtered": 11.11111111,
"pruned_by_cost": true,
"current_cost": 0.067060495,
"best_cost": 0.059588485
}
]
},
{
"plan_prefix": "t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 9,
"cost_for_plan": 0.022028022,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.015203373,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.015203373,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_2,t_inner_1",
"table": "t1",
"rows_for_plan": 27,
"cost_for_plan": 0.037231395,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 9,
"cost": 0.070751357
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 1,
"tmp_table_rows": 3,
"sj_inner_fanout": 9,
"rows": 3,
"dups_cost": 0.037231395,
"write_cost": 0.02548291,
"full_lookup_cost": 0.00434619,
"total_cost": 0.067060495
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 3,
"sj_filtered": 11.11111111,
"pruned_by_cost": true,
"current_cost": 0.067060495,
"best_cost": 0.059588485
}
]
}
]
}
]
},
{
"fix_semijoin_strategies_for_picked_join_order": [
{
"semi_join_strategy": "SJ-Materialization",
"join_order": [
{
"table": "t_inner_1"
},
{
"table": "t_inner_2"
}
]
}
]
},
{
"best_join_order": ["t1", "<subquery2>"],
"rows": 3,
"cost": 0.059588485
},
{
"substitute_best_equal": {
"condition": "WHERE",
"resulting_condition": "1"
}
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [
{
"condition_on_constant_tables": "1",
"computing_condition": []
}
],
"attached_conditions_summary": [
{
"table": "t1",
"attached_condition": null
},
{
"table": "t_inner_1",
"attached_condition": null
},
{
"table": "t_inner_2",
"attached_condition": null
},
{
"table": "<subquery2>",
"attached_condition": null
}
]
}
},
{
"make_join_readinfo": []
}
]
}
}
]
} 0 0
# with Firstmatch, mostly for tracing fix_semijoin_strategies_for_picked_join_order
set optimizer_switch='materialization=off';
explain select * from t1 t_outer_1,t2 t_outer_2 where t_outer_1.a in (select t_inner_1.a from t2 t_inner_2, t1 t_inner_1) and
t_outer_2.a in (select t_inner_3.a from t2 t_inner_3, t1 t_inner_4);
id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY t_outer_1 ALL NULL NULL NULL NULL 3
1 PRIMARY t_inner_1 ALL NULL NULL NULL NULL 3 Using where; Start temporary; Using join buffer (flat, BNL join)
1 PRIMARY t_inner_2 ALL NULL NULL NULL NULL 9 End temporary; Using join buffer (incremental, BNL join)
1 PRIMARY t_inner_4 ALL NULL NULL NULL NULL 3 Start temporary; Using join buffer (incremental, BNL join)
1 PRIMARY t_outer_2 ALL NULL NULL NULL NULL 9 Using join buffer (incremental, BNL join)
1 PRIMARY t_inner_3 ALL NULL NULL NULL NULL 9 Using where; End temporary; Using join buffer (incremental, BNL join)
select * from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
explain select * from t1 t_outer_1,t2 t_outer_2 where t_outer_1.a in (select t_inner_1.a from t2 t_inner_2, t1 t_inner_1) and
t_outer_2.a in (select t_inner_3.a from t2 t_inner_3, t1 t_inner_4) {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"join_preparation": {
"select_id": 2,
"steps": [
{
"transformation": {
"select_id": 2,
"from": "IN (SELECT)",
"to": "semijoin",
"chosen": true
}
},
{
"expanded_query": "/* select#2 */ select t_inner_1.a from t2 t_inner_2 join t1 t_inner_1"
}
]
}
},
{
"join_preparation": {
"select_id": 3,
"steps": [
{
"transformation": {
"select_id": 3,
"from": "IN (SELECT)",
"to": "semijoin",
"chosen": true
}
},
{
"expanded_query": "/* select#3 */ select t_inner_3.a from t2 t_inner_3 join t1 t_inner_4"
}
]
}
},
{
"expanded_query": "/* select#1 */ select t_outer_1.a AS a,t_outer_2.a AS a from t1 t_outer_1 join t2 t_outer_2 where t_outer_1.a in (/* select#2 */ select t_inner_1.a from t2 t_inner_2 join t1 t_inner_1) and t_outer_2.a in (/* select#3 */ select t_inner_3.a from t2 t_inner_3 join t1 t_inner_4)"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"transformation": {
"select_id": 2,
"from": "IN (SELECT)",
"to": "materialization",
"sjm_scan_allowed": true,
"possible": true
}
},
{
"transformation": {
"select_id": 2,
"from": "IN (SELECT)",
"to": "semijoin",
"converted_to_semi_join": true
}
},
{
"transformation": {
"select_id": 3,
"from": "IN (SELECT)",
"to": "materialization",
"sjm_scan_allowed": true,
"possible": true
}
},
{
"transformation": {
"select_id": 3,
"from": "IN (SELECT)",
"to": "semijoin",
"converted_to_semi_join": true
}
},
{
"condition_processing": {
"condition": "WHERE",
"original_condition": "1 and 1 and t_outer_1.a = t_inner_1.a and t_outer_2.a = t_inner_3.a",
"steps": [
{
"transformation": "equality_propagation",
"resulting_condition": "1 and 1 and multiple equal(t_outer_1.a, t_inner_1.a) and multiple equal(t_outer_2.a, t_inner_3.a)"
},
{
"transformation": "constant_propagation",
"resulting_condition": "1 and 1 and multiple equal(t_outer_1.a, t_inner_1.a) and multiple equal(t_outer_2.a, t_inner_3.a)"
},
{
"transformation": "trivial_condition_removal",
"resulting_condition": "multiple equal(t_outer_1.a, t_inner_1.a) and multiple equal(t_outer_2.a, t_inner_3.a)"
}
]
}
},
{
"ref_optimizer_key_uses": []
},
{
"rows_estimation": [
{
"table": "t_outer_1",
"table_scan": {
"rows": 3,
"read_cost": 0.010408815,
"read_and_compare_cost": 0.010504815
}
},
{
"table": "t_outer_2",
"table_scan": {
"rows": 9,
"read_cost": 0.011155245,
"read_and_compare_cost": 0.011443245
}
},
{
"table": "t_inner_2",
"table_scan": {
"rows": 9,
"read_cost": 0.011155245,
"read_and_compare_cost": 0.011443245
}
},
{
"table": "t_inner_1",
"table_scan": {
"rows": 3,
"read_cost": 0.010408815,
"read_and_compare_cost": 0.010504815
}
},
{
"table": "t_inner_3",
"table_scan": {
"rows": 9,
"read_cost": 0.011155245,
"read_and_compare_cost": 0.011443245
}
},
{
"table": "t_inner_4",
"table_scan": {
"rows": 3,
"read_cost": 0.010408815,
"read_and_compare_cost": 0.010504815
}
}
]
},
{
"semijoin_table_pullout": {
"pulled_out_tables": []
}
},
{
"semijoin_table_pullout": {
"pulled_out_tables": []
}
},
{
"table_dependencies": [
{
"table": "t_outer_1",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
},
{
"table": "t_outer_2",
"row_may_be_null": false,
"map_bit": 1,
"depends_on_map_bits": []
},
{
"table": "t_inner_2",
"row_may_be_null": false,
"map_bit": 2,
"depends_on_map_bits": []
},
{
"table": "t_inner_1",
"row_may_be_null": false,
"map_bit": 3,
"depends_on_map_bits": []
},
{
"table": "t_inner_3",
"row_may_be_null": false,
"map_bit": 4,
"depends_on_map_bits": []
},
{
"table": "t_inner_4",
"row_may_be_null": false,
"map_bit": 5,
"depends_on_map_bits": []
}
]
},
{
"execution_plan_for_potential_materialization": {
"steps": []
}
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.010504815,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.010504815,
"uses_join_buffering": false
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.010504815,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.010504815,
"uses_join_buffering": false
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.011443245,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.011443245,
"uses_join_buffering": false
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.011443245,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.011443245,
"uses_join_buffering": false
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.010504815,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.010504815,
"uses_join_buffering": false
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.011443245,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.011443245,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t_outer_1",
"rows_for_plan": 3,
"cost_for_plan": 0.010504815,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.011523207,
"cost_without_join_buffer": 0.031514445,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.011523207,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.014133225,
"cost_without_join_buffer": 0.034329735,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.014133225,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.014133225,
"cost_without_join_buffer": 0.034329735,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.014133225,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.011523207,
"cost_without_join_buffer": 0.031514445,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.011523207,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.014133225,
"cost_without_join_buffer": 0.034329735,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.014133225,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1",
"table": "t_outer_2",
"rows_for_plan": 27,
"cost_for_plan": 0.02463804,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.049238529,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.23517089
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.222053862,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.368747182
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.403207963,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.664765924,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.579280032
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.664765924,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.811459244
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.448771561,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_2,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_2,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.719251384,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 3.230384842
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.719251384,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.865944704
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.865944704,
"best_cost": 0.811459244
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 243,
"cost_for_plan": 0.116820804,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_4,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 2187
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 6.764540577,
"cost_without_join_buffer": 25.02637682,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 6.764540577,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_4,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 19683,
"cost_for_plan": 7.510034832,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 28.96624341
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 729,
"rows": 27,
"dups_cost": 7.510034832,
"write_cost": 0.02934619,
"full_lookup_cost": 3.16837251,
"total_cost": 10.70775353
},
{
"chosen_strategy": "FirstMatch"
}
],
"sj_rows_out": 0.012345679,
"sj_rows_for_plan": 27,
"sj_filtered": 0.137174211,
"pruned_by_cost": true,
"current_cost": 28.96624341,
"best_cost": 0.811459244
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 2187
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 6.764540577,
"cost_without_join_buffer": 25.02637682,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 6.764540577,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_4,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 19683,
"cost_for_plan": 7.510034832,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 28.96624341
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 729,
"rows": 27,
"dups_cost": 7.510034832,
"write_cost": 0.02934619,
"full_lookup_cost": 3.16837251,
"total_cost": 10.70775353
},
{
"chosen_strategy": "FirstMatch"
}
],
"sj_rows_out": 0.012345679,
"sj_rows_for_plan": 27,
"sj_filtered": 0.137174211,
"pruned_by_cost": true,
"current_cost": 28.96624341,
"best_cost": 0.811459244
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.085187725,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.085187725,
"best_cost": 0.811459244
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 2187,
"cost_for_plan": 0.879369759,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.879369759,
"best_cost": 0.811459244
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.075081543,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 2.8862757
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.256818738,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.403512058
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.437972839,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2,t_inner_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2,t_inner_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.6995308,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.614044908
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.6995308,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.84622412
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.84622412,
"best_cost": 0.811459244
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.483536437,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2,t_inner_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2,t_inner_1,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.75401626,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 3.265149718
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.75401626,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.90070958
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.90070958,
"best_cost": 0.811459244
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.914134635,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.914134635,
"best_cost": 0.811459244
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 6561,
"cost_for_plan": 2.119952601,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.119952601,
"best_cost": 0.811459244
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.570641052,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 2187
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 1.950938061,
"cost_without_join_buffer": 22.97403041,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 1.950938061,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 2187
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 1.950938061,
"cost_without_join_buffer": 22.97403041,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 1.950938061,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2,t_inner_3",
"table": "t_inner_1",
"rows_for_plan": 6561,
"cost_for_plan": 2.521579113,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.521579113,
"best_cost": 0.811459244
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 6561,
"cost_for_plan": 2.521579113,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.521579113,
"best_cost": 0.811459244
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.049238529,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 243,
"cost_for_plan": 0.116820804,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 2187
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 6.764540577,
"cost_without_join_buffer": 25.02637682,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 6.764540577,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_1,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 19683,
"cost_for_plan": 7.510034832,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 28.96624341
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 729,
"rows": 27,
"dups_cost": 7.510034832,
"write_cost": 0.02934619,
"full_lookup_cost": 3.16837251,
"total_cost": 10.70775353
},
{
"chosen_strategy": "FirstMatch"
}
],
"sj_rows_out": 0.012345679,
"sj_rows_for_plan": 27,
"sj_filtered": 0.137174211,
"pruned_by_cost": true,
"current_cost": 28.96624341,
"best_cost": 0.811459244
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 2187
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 6.764540577,
"cost_without_join_buffer": 25.02637682,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 6.764540577,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_1,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 19683,
"cost_for_plan": 7.510034832,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 28.96624341
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 729,
"rows": 27,
"dups_cost": 7.510034832,
"write_cost": 0.02934619,
"full_lookup_cost": 3.16837251,
"total_cost": 10.70775353
},
{
"chosen_strategy": "FirstMatch"
}
],
"sj_rows_out": 0.012345679,
"sj_rows_for_plan": 27,
"sj_filtered": 0.137174211,
"pruned_by_cost": true,
"current_cost": 28.96624341,
"best_cost": 0.811459244
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.879369759,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.879369759,
"best_cost": 0.811459244
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 6561,
"cost_for_plan": 2.085187725,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.085187725,
"best_cost": 0.811459244
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.23517089
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.222053862,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.368747182
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_3",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.403207963,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_3,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_3,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.664765924,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.579280032
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.664765924,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.811459244
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.811459244,
"best_cost": 0.811459244
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.448771561,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_3,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_3,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.719251384,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 3.230384842
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.719251384,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.865944704
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.865944704,
"best_cost": 0.811459244
}
]
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.075081543,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.119952601,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.119952601,
"best_cost": 0.811459244
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 2187,
"cost_for_plan": 0.914134635,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.914134635,
"best_cost": 0.811459244
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.570641052,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 2187
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 1.950938061,
"cost_without_join_buffer": 22.97403041,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 1.950938061,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 2187
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 1.950938061,
"cost_without_join_buffer": 22.97403041,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 1.950938061,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 6561,
"cost_for_plan": 2.521579113,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.521579113,
"best_cost": 0.811459244
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 6561,
"cost_for_plan": 2.521579113,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.521579113,
"best_cost": 0.811459244
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 2.8862757
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.256818738,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.403512058
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.437972839,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3,t_inner_4,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3,t_inner_4,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.6995308,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.614044908
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.6995308,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.84622412
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.84622412,
"best_cost": 0.811459244
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.483536437,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3,t_inner_4,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3,t_inner_4,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.75401626,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 3.265149718
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.75401626,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.90070958
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.90070958,
"best_cost": 0.811459244
}
]
}
]
}
]
}
]
},
{
"plan_prefix": "t_outer_1",
"table": "t_inner_1",
"rows_for_plan": 9,
"cost_for_plan": 0.022028022,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.024443331,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.024443331,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.024443331,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.024443331,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.015203373,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.015203373,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.024443331,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.024443331,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1",
"table": "t_outer_2",
"rows_for_plan": 81,
"cost_for_plan": 0.046471353,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.219286686,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.365980006
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.400440787,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2,t_inner_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2,t_inner_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.661998748,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.576512856
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.661998748,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.808692068
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.446004385,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2,t_inner_2,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2,t_inner_2,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.716484208,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 3.227617666
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.716484208,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.863177528
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.863177528,
"best_cost": 0.808692068
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2",
"table": "t_inner_4",
"rows_for_plan": 243,
"cost_for_plan": 0.114053628,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2,t_inner_4,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 2187
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 6.764540577,
"cost_without_join_buffer": 25.02637682,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 6.764540577,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2,t_inner_4,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 19683,
"cost_for_plan": 7.507267656,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 729,
"rows": 27,
"dups_cost": 7.507267656,
"write_cost": 0.02934619,
"full_lookup_cost": 3.16837251,
"total_cost": 10.70498636
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.012345679,
"sj_rows_for_plan": 27,
"sj_filtered": 0.137174211,
"pruned_by_cost": true,
"current_cost": 10.70498636,
"best_cost": 0.808692068
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 2187
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 6.764540577,
"cost_without_join_buffer": 25.02637682,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 6.764540577,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2,t_inner_4,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 19683,
"cost_for_plan": 7.507267656,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 729,
"rows": 27,
"dups_cost": 7.507267656,
"write_cost": 0.02934619,
"full_lookup_cost": 3.16837251,
"total_cost": 10.70498636
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.012345679,
"sj_rows_for_plan": 27,
"sj_filtered": 0.137174211,
"pruned_by_cost": true,
"current_cost": 10.70498636,
"best_cost": 0.808692068
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.082420549,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.082420549,
"best_cost": 0.808692068
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 2187,
"cost_for_plan": 0.876602583,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.876602583,
"best_cost": 0.808692068
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 81,
"cost_for_plan": 0.046471353,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 3,
"cost": 0.145008465
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 3,
"dups_cost": 0.046471353,
"write_cost": 0.02548291,
"full_lookup_cost": 0.01303857,
"total_cost": 0.084992833
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 3,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.017419989,
"cost_without_join_buffer": 0.034329735,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.017419989,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.012618795,
"cost_without_join_buffer": 0.031514445,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.012618795,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.017419989,
"cost_without_join_buffer": 0.034329735,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.017419989,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2",
"table": "t_outer_2",
"rows_for_plan": 27,
"cost_for_plan": 0.102412822,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_outer_2",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.136873603,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_outer_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_outer_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.398431564,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.312945672
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.398431564,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.545124884
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.182437201,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_outer_2,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_outer_2,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.452917024,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 2.964050482
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.452917024,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.599610344
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.599610344,
"best_cost": 0.545124884
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 9,
"cost_for_plan": 0.097611628,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.034303623,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.034303623,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.034303623,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.034303623,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 81,
"cost_for_plan": 0.131915251,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_4,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_4,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.393473212,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.393473212,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.540166532
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 81,
"cost_for_plan": 0.131915251,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_4,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.393473212,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.393473212,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.540166532
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.540166532,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 27,
"cost_for_plan": 0.102412822,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 243,
"cost_for_plan": 0.182437201,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_3,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_3,t_outer_2",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.452917024,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.452917024,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.599610344
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.599610344,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.136873603,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_3,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_3,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.398431564,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.398431564,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.545124884
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.545124884,
"best_cost": 0.540166532
}
]
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 27,
"cost_for_plan": 0.037231395,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.065233941,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.065233941,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.065233941,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.065233941,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.065233941,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.065233941,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 243,
"cost_for_plan": 0.102465336,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4,t_outer_2",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.102465336,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4,t_inner_2",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.102465336,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 81,
"cost_for_plan": 0.046471353,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_3,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_3,t_outer_2",
"table": "t_inner_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.082420549,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.082420549,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_3,t_outer_2",
"table": "t_inner_4",
"rows_for_plan": 2187,
"cost_for_plan": 0.876602583,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.876602583,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_3,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_3,t_inner_2",
"table": "t_outer_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.082420549,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.082420549,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_3,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 2187,
"cost_for_plan": 0.876602583,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.876602583,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 243,
"cost_for_plan": 0.114053628,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_3,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_3,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.742727079,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_3,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.742727079,
"best_cost": 0.540166532
}
]
}
]
}
]
},
{
"plan_prefix": "t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 27,
"cost_for_plan": 0.02463804,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2",
"table": "t_outer_2",
"rows_for_plan": 243,
"cost_for_plan": 0.075081543,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_outer_2",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.256818738,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.403512058
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_outer_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_outer_2,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.437972839,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_outer_2,t_inner_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_outer_2,t_inner_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.6995308,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.614044908
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.6995308,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.84622412
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.84622412,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_outer_2,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.483536437,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_outer_2,t_inner_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_outer_2,t_inner_1,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.75401626,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 3.265149718
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.75401626,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.90070958
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.90070958,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_outer_2",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_outer_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_outer_2,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.914134635,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.914134635,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_outer_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 6561,
"cost_for_plan": 2.119952601,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.119952601,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.570641052,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.570641052,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.049238529,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 3,
"cost": 0.328464555
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 3,
"dups_cost": 0.049238529,
"write_cost": 0.02548291,
"full_lookup_cost": 0.01303857,
"total_cost": 0.087760009
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 3,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.017419989,
"cost_without_join_buffer": 0.034329735,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.017419989,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.012618795,
"cost_without_join_buffer": 0.031514445,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.012618795,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.017419989,
"cost_without_join_buffer": 0.034329735,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.017419989,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1",
"table": "t_outer_2",
"rows_for_plan": 27,
"cost_for_plan": 0.105179998,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_outer_2",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.139640779,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_outer_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_outer_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.40119874,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.315712848
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.40119874,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.54789206
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.54789206,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.185204377,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_outer_2,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_outer_2,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.4556842,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 2.966817658
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.4556842,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.60237752
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.60237752,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 9,
"cost_for_plan": 0.100378804,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.034303623,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.034303623,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.034303623,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.034303623,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 81,
"cost_for_plan": 0.134682427,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_4,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_4,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.396240388,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.396240388,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.542933708
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.542933708,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 81,
"cost_for_plan": 0.134682427,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_4,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.396240388,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.396240388,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.542933708
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.542933708,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 27,
"cost_for_plan": 0.105179998,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 243,
"cost_for_plan": 0.185204377,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_3,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_3,t_outer_2",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.4556842,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.4556842,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.60237752
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.60237752,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.139640779,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_3,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_3,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.40119874,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.40119874,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.54789206
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.54789206,
"best_cost": 0.540166532
}
]
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.049238529,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_4,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_4,t_outer_2",
"table": "t_inner_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.879369759,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.879369759,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_4,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 6561,
"cost_for_plan": 2.085187725,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.085187725,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 243,
"cost_for_plan": 0.116820804,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_4,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_4,t_inner_1",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745494255,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_4,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745494255,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_4,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.085187725,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.085187725,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_4,t_inner_3",
"table": "t_inner_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.879369759,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.879369759,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.075081543,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.570641052,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.570641052,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_3",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_3,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_3,t_inner_1",
"table": "t_outer_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.119952601,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.119952601,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_3,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 2187,
"cost_for_plan": 0.914134635,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.914134635,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_3,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_3,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.119952601,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.119952601,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_3,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.914134635,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.914134635,
"best_cost": 0.540166532
}
]
}
]
}
]
},
{
"plan_prefix": "t_outer_1",
"table": "t_inner_4",
"rows_for_plan": 9,
"cost_for_plan": 0.022028022,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.024443331,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.024443331,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.024443331,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.024443331,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.015203373,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.015203373,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.024443331,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.024443331,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 81,
"cost_for_plan": 0.046471353,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2",
"table": "t_inner_1",
"rows_for_plan": 243,
"cost_for_plan": 0.114053628,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.742727079,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.742727079,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.876602583,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.876602583,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 6561,
"cost_for_plan": 2.082420549,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.082420549,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.219286686,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.365980006
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2,t_inner_3",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.400440787,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2,t_inner_3,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2,t_inner_3,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.661998748,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.576512856
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.661998748,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.808692068
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.808692068,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.446004385,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2,t_inner_3,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2,t_inner_3,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.716484208,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 3.227617666
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.716484208,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.863177528
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.863177528,
"best_cost": 0.540166532
}
]
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 27,
"cost_for_plan": 0.037231395,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.065233941,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.065233941,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.065233941,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.065233941,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.065233941,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.065233941,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1",
"table": "t_outer_2",
"rows_for_plan": 243,
"cost_for_plan": 0.102465336,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1,t_outer_2",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.102465336,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1,t_inner_2",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.102465336,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 81,
"cost_for_plan": 0.046471353,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_2",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_2,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_2,t_outer_2",
"table": "t_inner_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.876602583,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.876602583,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_2,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 6561,
"cost_for_plan": 2.082420549,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.082420549,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 243,
"cost_for_plan": 0.114053628,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_2,t_inner_1",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.742727079,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_2,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.742727079,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_2,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_2,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.082420549,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.082420549,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_2,t_inner_3",
"table": "t_inner_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.876602583,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.876602583,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 81,
"cost_for_plan": 0.046471353,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.219286686,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.365980006
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3,t_outer_2",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.400440787,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3,t_outer_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3,t_outer_2,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.661998748,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.576512856
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.661998748,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.808692068
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.808692068,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3,t_outer_2",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.446004385,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3,t_outer_2,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3,t_outer_2,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.716484208,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 3.227617666
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.716484208,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.863177528
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.863177528,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3",
"table": "t_inner_1",
"rows_for_plan": 243,
"cost_for_plan": 0.114053628,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3,t_inner_1",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.742727079,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 81,
"cost": 3.678069903
},
{
"chosen_strategy": "FirstMatch"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 81,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 3.678069903,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3,t_inner_2",
"table": "t_outer_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.082420549,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.082420549,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.876602583,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 81,
"cost": 8.631384333
},
{
"chosen_strategy": "FirstMatch"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 81,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 8.631384333,
"best_cost": 0.540166532
}
]
}
]
}
]
},
{
"plan_prefix": "t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 27,
"cost_for_plan": 0.02463804,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 243,
"cost_for_plan": 0.075081543,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_outer_2",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_outer_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_outer_2,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.119952601,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.119952601,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_outer_2,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 2187,
"cost_for_plan": 0.914134635,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.914134635,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_outer_2",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.570641052,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.570641052,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_outer_2",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.256818738,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.403512058
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_outer_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_outer_2,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.437972839,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_outer_2,t_inner_4,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_outer_2,t_inner_4,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.6995308,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.614044908
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.6995308,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.84622412
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.84622412,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_outer_2,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.483536437,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_outer_2,t_inner_4,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_outer_2,t_inner_4,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.75401626,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 3.265149718
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.75401626,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.90070958
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.90070958,
"best_cost": 0.540166532
}
]
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.049238529,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_1",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_1,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_1,t_outer_2",
"table": "t_inner_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.085187725,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.085187725,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_1,t_outer_2",
"table": "t_inner_4",
"rows_for_plan": 2187,
"cost_for_plan": 0.879369759,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.879369759,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_1,t_inner_2",
"table": "t_outer_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.085187725,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.085187725,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_1,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 2187,
"cost_for_plan": 0.879369759,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.879369759,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 243,
"cost_for_plan": 0.116820804,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_1,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745494255,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_1,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745494255,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.075081543,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_2",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.570641052,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.570641052,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_2,t_inner_1",
"table": "t_outer_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.119952601,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.119952601,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_2,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 2187,
"cost_for_plan": 0.914134635,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.914134635,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_2,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.119952601,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.119952601,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_2,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.914134635,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.914134635,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.049238529,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.222053862,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.368747182
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4,t_outer_2",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.403207963,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4,t_outer_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4,t_outer_2,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.664765924,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.579280032
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.664765924,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.811459244
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.811459244,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4,t_outer_2",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.448771561,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4,t_outer_2,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4,t_outer_2,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.719251384,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 3.230384842
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.719251384,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.865944704
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.865944704,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 243,
"cost_for_plan": 0.116820804,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4,t_inner_1",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745494255,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 81,
"cost": 3.680837079
},
{
"chosen_strategy": "FirstMatch"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 81,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 3.680837079,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4,t_inner_2",
"table": "t_outer_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.085187725,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.085187725,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.879369759,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 81,
"cost": 8.634151509
},
{
"chosen_strategy": "FirstMatch"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 81,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 8.634151509,
"best_cost": 0.540166532
}
]
}
]
}
]
}
]
},
{
"plan_prefix": "",
"table": "t_outer_2",
"rows_for_plan": 9,
"cost_for_plan": 0.011443245,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.013559991,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.013559991,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.019513185,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.019513185,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.013559991,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.013559991,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.013559991,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.013559991,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.019513185,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.019513185,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2",
"table": "t_outer_1",
"rows_for_plan": 27,
"cost_for_plan": 0.025003236,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.049603725,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222419058,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.235536086
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.222419058,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.369112378
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.403573159,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1,t_inner_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1,t_inner_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.66513112,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.579645228
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.66513112,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.81182444
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.81182444,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.449136757,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1,t_inner_2,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1,t_inner_2,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.71961658,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 3.230750038
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.71961658,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.8663099
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.8663099,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 243,
"cost_for_plan": 0.117186,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745859451,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745859451,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.745859451,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745859451,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.222419058,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.085552921,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.085552921,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 2187,
"cost_for_plan": 0.879734955,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.879734955,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.075446739,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.257183934,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 2.886640896
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.257183934,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.403877254
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_2,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.438338035,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_2,t_inner_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_2,t_inner_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.699895996,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.614410104
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.699895996,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.846589316
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.846589316,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_2,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.483901633,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_2,t_inner_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_2,t_inner_1,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.754381456,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 3.265514914
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.754381456,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.901074776
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.901074776,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.257183934,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_2,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.914499831,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.914499831,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 6561,
"cost_for_plan": 2.120317797,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.120317797,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.571006248,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.571006248,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.049603725,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 243,
"cost_for_plan": 0.117186,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745859451,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745859451,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.745859451,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745859451,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222419058,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.879734955,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.879734955,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 6561,
"cost_for_plan": 2.085552921,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.085552921,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.222419058,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.235536086
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.222419058,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.369112378
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4,t_inner_3",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.403573159,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4,t_inner_3,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4,t_inner_3,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.66513112,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.579645228
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.66513112,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.81182444
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.81182444,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.449136757,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4,t_inner_3,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4,t_inner_3,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.71961658,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 3.230750038
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.71961658,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.8663099
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.8663099,
"best_cost": 0.540166532
}
]
}
]
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.075446739,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_3",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.257183934,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_3,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_3,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.120317797,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.120317797,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_3,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 2187,
"cost_for_plan": 0.914499831,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.914499831,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.571006248,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.571006248,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.257183934,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 2.886640896
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.257183934,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.403877254
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_3,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_3,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.438338035,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_3,t_inner_4,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_3,t_inner_4,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.699895996,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.614410104
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.699895996,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.846589316
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.846589316,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_3,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.483901633,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_3,t_inner_4,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_3,t_inner_4,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.754381456,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 3.265514914
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.754381456,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.901074776
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.901074776,
"best_cost": 0.540166532
}
]
}
]
}
]
}
]
},
{
"plan_prefix": "t_outer_2",
"table": "t_inner_1",
"rows_for_plan": 27,
"cost_for_plan": 0.025003236,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1",
"table": "t_outer_1",
"rows_for_plan": 81,
"cost_for_plan": 0.049603725,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222419058,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.222419058,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.369112378
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.403573159,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1,t_inner_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1,t_inner_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.66513112,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.579645228
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.66513112,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.81182444
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.81182444,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.449136757,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1,t_inner_2,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1,t_inner_2,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.71961658,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 3.230750038
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.71961658,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.8663099
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.8663099,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1",
"table": "t_inner_4",
"rows_for_plan": 243,
"cost_for_plan": 0.117186,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745859451,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745859451,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.745859451,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745859451,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.222419058,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.085552921,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.085552921,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 2187,
"cost_for_plan": 0.879734955,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.879734955,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.075446739,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_2",
"table": "t_outer_1",
"rows_for_plan": 729,
"cost_for_plan": 0.257183934,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.257183934,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.403877254
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_2,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_2,t_outer_1",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.438338035,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_2,t_outer_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_2,t_outer_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.699895996,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.614410104
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.699895996,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.846589316
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.846589316,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_2,t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.483901633,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_2,t_outer_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_2,t_outer_1,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.754381456,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 3.265514914
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.754381456,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.901074776
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.901074776,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.257183934,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_2,t_inner_4",
"table": "t_outer_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.914499831,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.914499831,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 6561,
"cost_for_plan": 2.120317797,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 243,
"cost": 10.97024239
},
{
"chosen_strategy": "FirstMatch"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 243,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 10.97024239,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.571006248,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.571006248,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.049603725,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_4",
"table": "t_outer_1",
"rows_for_plan": 243,
"cost_for_plan": 0.117186,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_4,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_4,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745859451,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745859451,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_4,t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.745859451,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745859451,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222419058,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_4,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_4,t_inner_2",
"table": "t_outer_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.879734955,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.879734955,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_4,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 6561,
"cost_for_plan": 2.085552921,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.085552921,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.222419058,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_4,t_inner_3",
"table": "t_outer_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.879734955,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.879734955,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_4,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.085552921,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.085552921,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.075446739,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_3",
"table": "t_outer_1",
"rows_for_plan": 729,
"cost_for_plan": 0.257183934,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_3,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_3,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.120317797,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.120317797,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_3,t_outer_1",
"table": "t_inner_4",
"rows_for_plan": 2187,
"cost_for_plan": 0.914499831,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.914499831,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.571006248,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.571006248,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.257183934,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_3,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_3,t_inner_4",
"table": "t_outer_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.914499831,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.914499831,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_3,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.120317797,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.120317797,
"best_cost": 0.540166532
}
]
}
]
}
]
},
{
"plan_prefix": "t_outer_2",
"table": "t_inner_2",
"rows_for_plan": 81,
"cost_for_plan": 0.03095643,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.052791837,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.052791837,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.052791837,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.052791837,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.052791837,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.052791837,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.128444019,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.128444019,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2",
"table": "t_outer_1",
"rows_for_plan": 243,
"cost_for_plan": 0.083748267,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_2,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_outer_1",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.265485462,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.265485462,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.412178782
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_2,t_outer_1,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_outer_1,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.446639563,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_2,t_outer_1,t_inner_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_outer_1,t_inner_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.708197524,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.622711632
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.708197524,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.854890844
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.854890844,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_outer_1,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.492203161,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_2,t_outer_1,t_inner_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_outer_1,t_inner_1,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.762682984,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 3.273816442
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.762682984,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.909376304
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.909376304,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_outer_1",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.265485462,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_2,t_outer_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_outer_1,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.922801359,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.922801359,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_outer_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 6561,
"cost_for_plan": 2.128619325,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.128619325,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.579307776,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.579307776,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 243,
"cost_for_plan": 0.083748267,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_1",
"table": "t_outer_1",
"rows_for_plan": 729,
"cost_for_plan": 0.265485462,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.265485462,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.412178782
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_1,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_1,t_outer_1",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.446639563,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_1,t_outer_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_1,t_outer_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.708197524,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.622711632
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.708197524,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.854890844
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.854890844,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_1,t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.492203161,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_1,t_outer_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_1,t_outer_1,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.762682984,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 3.273816442
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.762682984,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.909376304
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.909376304,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.265485462,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_1,t_inner_4",
"table": "t_outer_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.922801359,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.922801359,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 6561,
"cost_for_plan": 2.128619325,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 243,
"cost": 10.97854392
},
{
"chosen_strategy": "FirstMatch"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 243,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 10.97854392,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.579307776,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.579307776,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 243,
"cost_for_plan": 0.083748267,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_4",
"table": "t_outer_1",
"rows_for_plan": 729,
"cost_for_plan": 0.265485462,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_4,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_4,t_outer_1",
"table": "t_inner_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.922801359,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.922801359,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_4,t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 6561,
"cost_for_plan": 2.128619325,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.128619325,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.265485462,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_4,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_4,t_inner_1",
"table": "t_outer_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.922801359,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.922801359,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_4,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 6561,
"cost_for_plan": 2.128619325,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.128619325,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.579307776,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.579307776,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.159400449,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.524201955,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.524201955,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.524201955,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.524201955,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.524201955,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.524201955,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_3",
"table": "t_outer_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.683602404,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.683602404,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_3",
"table": "t_inner_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.683602404,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.683602404,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 2187,
"cost_for_plan": 0.683602404,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.683602404,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_2",
"table": "t_inner_4",
"rows_for_plan": 27,
"cost_for_plan": 0.025003236,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4",
"table": "t_outer_1",
"rows_for_plan": 81,
"cost_for_plan": 0.049603725,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1",
"table": "t_inner_1",
"rows_for_plan": 243,
"cost_for_plan": 0.117186,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745859451,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745859451,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.745859451,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745859451,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222419058,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.879734955,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.879734955,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 6561,
"cost_for_plan": 2.085552921,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.085552921,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.222419058,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.222419058,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.369112378
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1,t_inner_3",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.403573159,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1,t_inner_3,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1,t_inner_3,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.66513112,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.579645228
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.66513112,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.81182444
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.81182444,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.449136757,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1,t_inner_3,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1,t_inner_3,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.71961658,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 3.230750038
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.71961658,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.8663099
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.8663099,
"best_cost": 0.540166532
}
]
}
]
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.049603725,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_1",
"table": "t_outer_1",
"rows_for_plan": 243,
"cost_for_plan": 0.117186,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_1,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_1,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745859451,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745859451,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_1,t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.745859451,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745859451,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222419058,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_1,t_inner_2",
"table": "t_outer_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.879734955,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.879734955,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_1,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 6561,
"cost_for_plan": 2.085552921,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.085552921,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.222419058,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_1,t_inner_3",
"table": "t_outer_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.879734955,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.879734955,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_1,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.085552921,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.085552921,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.075446739,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_2",
"table": "t_outer_1",
"rows_for_plan": 729,
"cost_for_plan": 0.257183934,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_2,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_2,t_outer_1",
"table": "t_inner_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.914499831,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.914499831,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_2,t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 6561,
"cost_for_plan": 2.120317797,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.120317797,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.257183934,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_2,t_inner_1",
"table": "t_outer_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.914499831,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.914499831,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_2,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 6561,
"cost_for_plan": 2.120317797,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.120317797,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.571006248,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.571006248,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.075446739,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 9,
"cost": 0.414954195
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 9,
"dups_cost": 0.075446739,
"write_cost": 0.02644873,
"full_lookup_cost": 0.03911571,
"total_cost": 0.141011179
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 9,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.016846755,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.016846755,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.016846755,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.016846755,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.029373477,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.029373477,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3",
"table": "t_outer_1",
"rows_for_plan": 27,
"cost_for_plan": 0.157857934,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_outer_1",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.192318715,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_outer_1,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_outer_1,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.453876676,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.368390784
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.453876676,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.600569996
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.600569996,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.237882313,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_outer_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_outer_1,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.508362136,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 3.019495594
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.508362136,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.655055456
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.655055456,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3",
"table": "t_inner_1",
"rows_for_plan": 27,
"cost_for_plan": 0.157857934,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_inner_1",
"table": "t_outer_1",
"rows_for_plan": 81,
"cost_for_plan": 0.192318715,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_inner_1,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_inner_1,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.453876676,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.453876676,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.600569996
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.600569996,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.237882313,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_inner_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_inner_1,t_inner_2",
"table": "t_outer_1",
"rows_for_plan": 729,
"cost_for_plan": 0.508362136,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.508362136,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.655055456
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.655055456,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 81,
"cost_for_plan": 0.170384656,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.082372713,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.082372713,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.082372713,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.082372713,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_inner_2",
"table": "t_outer_1",
"rows_for_plan": 243,
"cost_for_plan": 0.252757369,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_inner_2,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_inner_2,t_outer_1",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.523237192,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.523237192,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.669930512
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.669930512,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 243,
"cost_for_plan": 0.252757369,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_inner_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_inner_2,t_inner_1",
"table": "t_outer_1",
"rows_for_plan": 729,
"cost_for_plan": 0.523237192,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.523237192,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.669930512
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.669930512,
"best_cost": 0.540166532
}
]
}
]
}
]
}
]
},
{
"plan_prefix": "t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 81,
"cost_for_plan": 0.03095643,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.128444019,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.128444019,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.052791837,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.052791837,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.052791837,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.052791837,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.052791837,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.052791837,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3",
"table": "t_outer_1",
"rows_for_plan": 243,
"cost_for_plan": 0.083748267,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_outer_1",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.265485462,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_outer_1,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_outer_1,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.128619325,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.128619325,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_outer_1,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 2187,
"cost_for_plan": 0.922801359,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.922801359,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.579307776,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.579307776,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_outer_1",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.265485462,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.265485462,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.412178782
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_outer_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_outer_1,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.446639563,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_outer_1,t_inner_4,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_outer_1,t_inner_4,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.708197524,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.622711632
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.708197524,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.854890844
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.854890844,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_outer_1,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.492203161,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_outer_1,t_inner_4,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_outer_1,t_inner_4,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.762682984,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 3.273816442
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.762682984,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.909376304
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.909376304,
"best_cost": 0.540166532
}
]
}
]
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3",
"table": "t_inner_1",
"rows_for_plan": 243,
"cost_for_plan": 0.083748267,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_1",
"table": "t_outer_1",
"rows_for_plan": 729,
"cost_for_plan": 0.265485462,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_1,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_1,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.128619325,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.128619325,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_1,t_outer_1",
"table": "t_inner_4",
"rows_for_plan": 2187,
"cost_for_plan": 0.922801359,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.922801359,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.579307776,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.579307776,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.265485462,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.657315897,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.657315897,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 1.863133863,
"cost_without_join_buffer": 8.342125605,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 1.863133863,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_1,t_inner_4",
"table": "t_outer_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.922801359,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.922801359,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_1,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 6561,
"cost_for_plan": 2.128619325,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 2.128619325,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.159400449,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.524201955,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.524201955,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.524201955,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.524201955,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 729
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.524201955,
"cost_without_join_buffer": 7.658010135,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.524201955,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_2",
"table": "t_outer_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.683602404,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.683602404,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 2187,
"cost_for_plan": 0.683602404,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.683602404,
"best_cost": 0.540166532
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 2187,
"cost_for_plan": 0.683602404,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.683602404,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 243,
"cost_for_plan": 0.083748267,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 9,
"cost": 0.965322465
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 9,
"dups_cost": 0.083748267,
"write_cost": 0.02644873,
"full_lookup_cost": 0.03911571,
"total_cost": 0.149312707
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 9,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.016846755,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.016846755,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.029373477,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.029373477,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.016846755,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.016846755,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4",
"table": "t_outer_1",
"rows_for_plan": 27,
"cost_for_plan": 0.166159462,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_outer_1",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.200620243,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_outer_1,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_outer_1,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.462178204,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.376692312
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.462178204,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.608871524
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.608871524,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.246183841,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_outer_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_outer_1,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.516663664,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 3.027797122
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.516663664,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.663356984
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.663356984,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 27,
"cost_for_plan": 0.166159462,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_inner_1",
"table": "t_outer_1",
"rows_for_plan": 81,
"cost_for_plan": 0.200620243,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_inner_1,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_inner_1,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.462178204,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.462178204,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.608871524
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.608871524,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.246183841,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_inner_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_inner_1,t_inner_2",
"table": "t_outer_1",
"rows_for_plan": 729,
"cost_for_plan": 0.516663664,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.516663664,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.663356984
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.663356984,
"best_cost": 0.540166532
}
]
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 81,
"cost_for_plan": 0.178686184,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.082372713,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.082372713,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.082372713,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.082372713,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_inner_2",
"table": "t_outer_1",
"rows_for_plan": 243,
"cost_for_plan": 0.261058897,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_inner_2,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_inner_2,t_outer_1",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.53153872,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.53153872,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.67823204
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.67823204,
"best_cost": 0.540166532
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 243,
"cost_for_plan": 0.261058897,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_inner_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.270479823,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.270479823,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_inner_2,t_inner_1",
"table": "t_outer_1",
"rows_for_plan": 729,
"cost_for_plan": 0.53153872,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.53153872,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.67823204
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.67823204,
"best_cost": 0.540166532
}
]
}
]
}
]
}
]
}
]
},
{
"plan_prefix": "",
"table": "t_inner_1",
"rows_for_plan": 3,
"cost_for_plan": 0.010504815,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.011523207,
"cost_without_join_buffer": 0.031514445,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.011523207,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.014133225,
"cost_without_join_buffer": 0.034329735,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.014133225,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.014133225,
"cost_without_join_buffer": 0.034329735,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.014133225,
1798384 0
set optimizer_switch='materialization=on';
explain select * from t1 t_outer_1,t2 t_outer_2 where t_outer_1.a in (select t_inner_1.a from t2 t_inner_2, t1 t_inner_1) and
t_outer_2.a in (select t_inner_3.a from t2 t_inner_3, t1 t_inner_4);
id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY t_outer_1 ALL NULL NULL NULL NULL 3
1 PRIMARY <subquery2> eq_ref distinct_key distinct_key 4 func 1
1 PRIMARY t_outer_2 ALL NULL NULL NULL NULL 9 Using join buffer (flat, BNL join)
1 PRIMARY <subquery3> eq_ref distinct_key distinct_key 4 func 1
2 MATERIALIZED t_inner_1 ALL NULL NULL NULL NULL 3
2 MATERIALIZED t_inner_2 ALL NULL NULL NULL NULL 9 Using join buffer (flat, BNL join)
3 MATERIALIZED t_inner_4 ALL NULL NULL NULL NULL 3
3 MATERIALIZED t_inner_3 ALL NULL NULL NULL NULL 9 Using join buffer (flat, BNL join)
select * from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
explain select * from t1 t_outer_1,t2 t_outer_2 where t_outer_1.a in (select t_inner_1.a from t2 t_inner_2, t1 t_inner_1) and
t_outer_2.a in (select t_inner_3.a from t2 t_inner_3, t1 t_inner_4) {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"join_preparation": {
"select_id": 2,
"steps": [
{
"transformation": {
"select_id": 2,
"from": "IN (SELECT)",
"to": "semijoin",
"chosen": true
}
},
{
"expanded_query": "/* select#2 */ select t_inner_1.a from t2 t_inner_2 join t1 t_inner_1"
}
]
}
},
{
"join_preparation": {
"select_id": 3,
"steps": [
{
"transformation": {
"select_id": 3,
"from": "IN (SELECT)",
"to": "semijoin",
"chosen": true
}
},
{
"expanded_query": "/* select#3 */ select t_inner_3.a from t2 t_inner_3 join t1 t_inner_4"
}
]
}
},
{
"expanded_query": "/* select#1 */ select t_outer_1.a AS a,t_outer_2.a AS a from t1 t_outer_1 join t2 t_outer_2 where t_outer_1.a in (/* select#2 */ select t_inner_1.a from t2 t_inner_2 join t1 t_inner_1) and t_outer_2.a in (/* select#3 */ select t_inner_3.a from t2 t_inner_3 join t1 t_inner_4)"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"transformation": {
"select_id": 2,
"from": "IN (SELECT)",
"to": "materialization",
"sjm_scan_allowed": true,
"possible": true
}
},
{
"transformation": {
"select_id": 2,
"from": "IN (SELECT)",
"to": "semijoin",
"converted_to_semi_join": true
}
},
{
"transformation": {
"select_id": 3,
"from": "IN (SELECT)",
"to": "materialization",
"sjm_scan_allowed": true,
"possible": true
}
},
{
"transformation": {
"select_id": 3,
"from": "IN (SELECT)",
"to": "semijoin",
"converted_to_semi_join": true
}
},
{
"condition_processing": {
"condition": "WHERE",
"original_condition": "1 and 1 and t_outer_1.a = t_inner_1.a and t_outer_2.a = t_inner_3.a",
"steps": [
{
"transformation": "equality_propagation",
"resulting_condition": "1 and 1 and multiple equal(t_outer_1.a, t_inner_1.a) and multiple equal(t_outer_2.a, t_inner_3.a)"
},
{
"transformation": "constant_propagation",
"resulting_condition": "1 and 1 and multiple equal(t_outer_1.a, t_inner_1.a) and multiple equal(t_outer_2.a, t_inner_3.a)"
},
{
"transformation": "trivial_condition_removal",
"resulting_condition": "multiple equal(t_outer_1.a, t_inner_1.a) and multiple equal(t_outer_2.a, t_inner_3.a)"
}
]
}
},
{
"ref_optimizer_key_uses": []
},
{
"rows_estimation": [
{
"table": "t_outer_1",
"table_scan": {
"rows": 3,
"read_cost": 0.010408815,
"read_and_compare_cost": 0.010504815
}
},
{
"table": "t_outer_2",
"table_scan": {
"rows": 9,
"read_cost": 0.011155245,
"read_and_compare_cost": 0.011443245
}
},
{
"table": "t_inner_2",
"table_scan": {
"rows": 9,
"read_cost": 0.011155245,
"read_and_compare_cost": 0.011443245
}
},
{
"table": "t_inner_1",
"table_scan": {
"rows": 3,
"read_cost": 0.010408815,
"read_and_compare_cost": 0.010504815
}
},
{
"table": "t_inner_3",
"table_scan": {
"rows": 9,
"read_cost": 0.011155245,
"read_and_compare_cost": 0.011443245
}
},
{
"table": "t_inner_4",
"table_scan": {
"rows": 3,
"read_cost": 0.010408815,
"read_and_compare_cost": 0.010504815
}
}
]
},
{
"semijoin_table_pullout": {
"pulled_out_tables": []
}
},
{
"semijoin_table_pullout": {
"pulled_out_tables": []
}
},
{
"table_dependencies": [
{
"table": "t_outer_1",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
},
{
"table": "t_outer_2",
"row_may_be_null": false,
"map_bit": 1,
"depends_on_map_bits": []
},
{
"table": "t_inner_2",
"row_may_be_null": false,
"map_bit": 2,
"depends_on_map_bits": []
},
{
"table": "t_inner_1",
"row_may_be_null": false,
"map_bit": 3,
"depends_on_map_bits": []
},
{
"table": "t_inner_3",
"row_may_be_null": false,
"map_bit": 4,
"depends_on_map_bits": []
},
{
"table": "t_inner_4",
"row_may_be_null": false,
"map_bit": 5,
"depends_on_map_bits": []
}
]
},
{
"execution_plan_for_potential_materialization": {
"steps": [
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.010504815,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.010504815,
"uses_join_buffering": false
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.011443245,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.011443245,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t_inner_1",
"rows_for_plan": 3,
"cost_for_plan": 0.010504815,
"rest_of_plan": [
{
"plan_prefix": "t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.014133225,
"cost_without_join_buffer": 0.034329735,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.014133225,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 27,
"cost_for_plan": 0.02463804
}
]
},
{
"plan_prefix": "",
"table": "t_inner_2",
"rows_for_plan": 9,
"cost_for_plan": 0.011443245,
"rest_of_plan": [
{
"plan_prefix": "t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.013559991,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.013559991,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 27,
"cost_for_plan": 0.025003236,
"pruned_by_cost": true,
"current_cost": 0.025003236,
"best_cost": 0.02463804
}
]
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.010504815,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.010504815,
"uses_join_buffering": false
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.011443245,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.011443245,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t_inner_4",
"rows_for_plan": 3,
"cost_for_plan": 0.010504815,
"rest_of_plan": [
{
"plan_prefix": "t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.014133225,
"cost_without_join_buffer": 0.034329735,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.014133225,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 27,
"cost_for_plan": 0.02463804
}
]
},
{
"plan_prefix": "",
"table": "t_inner_3",
"rows_for_plan": 9,
"cost_for_plan": 0.011443245,
"rest_of_plan": [
{
"plan_prefix": "t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.013559991,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.013559991,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 27,
"cost_for_plan": 0.025003236,
"pruned_by_cost": true,
"current_cost": 0.025003236,
"best_cost": 0.02463804
}
]
}
]
}
]
}
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.010504815,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.010504815,
"uses_join_buffering": false
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.010504815,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.010504815,
"uses_join_buffering": false
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.011443245,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.011443245,
"uses_join_buffering": false
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.011443245,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.011443245,
"uses_join_buffering": false
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.010504815,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.010504815,
"uses_join_buffering": false
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.011443245,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.011443245,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t_outer_1",
"rows_for_plan": 3,
"cost_for_plan": 0.010504815,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.011523207,
"cost_without_join_buffer": 0.031514445,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.011523207,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.014133225,
"cost_without_join_buffer": 0.034329735,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.014133225,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.014133225,
"cost_without_join_buffer": 0.034329735,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.014133225,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.011523207,
"cost_without_join_buffer": 0.031514445,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.011523207,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.014133225,
"cost_without_join_buffer": 0.034329735,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.014133225,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1",
"table": "t_outer_2",
"rows_for_plan": 27,
"cost_for_plan": 0.02463804,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.049238529,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.23517089
},
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.083958496
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.222053862,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.368747182
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.118419277,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.379977238,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.294491346
},
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.143278952
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.379977238,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.526670558
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.163982875,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.163982875,
"best_cost": 0.143278952
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 243,
"cost_for_plan": 0.116820804,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745494255,
"best_cost": 0.143278952
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization",
"rows": 81,
"cost": 0.119105401
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 81,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1,t_inner_4,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.380663362,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 4.86676944
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 1.007052216,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 1.153745536
},
{
"chosen_strategy": "FirstMatch"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 4.86676944,
"best_cost": 0.143278952
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.222053862,
"best_cost": 0.143278952
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.075081543,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 2.8862757
},
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.083958496
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.256818738,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.403512058
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.118419277,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2,t_inner_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2,t_inner_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.379977238,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.294491346
},
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.143278952
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.379977238,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.526670558
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.143278952,
"best_cost": 0.143278952
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.163982875,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.163982875,
"best_cost": 0.143278952
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.256818738,
"best_cost": 0.143278952
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.570641052,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.570641052,
"best_cost": 0.143278952
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.049238529,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 243,
"cost_for_plan": 0.116820804,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization",
"rows": 81,
"cost": 0.119105401
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 81,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_1,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.380663362,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 4.86676944
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 1.007052216,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 1.153745536
},
{
"chosen_strategy": "FirstMatch"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 4.86676944,
"best_cost": 0.143278952
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745494255,
"best_cost": 0.143278952
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.222053862,
"best_cost": 0.143278952
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.23517089
},
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.083958496
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.222053862,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.368747182
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_3",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.118419277,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_3,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_3,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.379977238,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.294491346
},
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.143278952
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.379977238,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.526670558
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.143278952,
"best_cost": 0.143278952
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_4,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.163982875,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.163982875,
"best_cost": 0.143278952
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.075081543,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.256818738,
"best_cost": 0.143278952
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.570641052,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.570641052,
"best_cost": 0.143278952
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 2.8862757
},
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.083958496
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.256818738,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.403512058
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.118419277,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3,t_inner_4,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3,t_inner_4,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.379977238,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.294491346
},
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.143278952
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.379977238,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.526670558
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.143278952,
"best_cost": 0.143278952
}
]
},
{
"plan_prefix": "t_outer_1,t_outer_2,t_inner_3,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.163982875,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.163982875,
"best_cost": 0.143278952
}
]
}
]
}
]
},
{
"plan_prefix": "t_outer_1",
"table": "t_inner_1",
"rows_for_plan": 9,
"cost_for_plan": 0.022028022,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.024443331,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.024443331,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.024443331,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.024443331,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.015203373,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.015203373,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.024443331,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.024443331,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1",
"table": "t_outer_2",
"rows_for_plan": 81,
"cost_for_plan": 0.046471353,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.219286686,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.365980006
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.365980006,
"best_cost": 0.143278952
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2",
"table": "t_inner_4",
"rows_for_plan": 243,
"cost_for_plan": 0.114053628,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.742727079,
"best_cost": 0.143278952
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization",
"rows": 81,
"cost": 0.116338225
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 81,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2,t_inner_4,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.377896186,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 1.00428504,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 1.15097836
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 1.15097836,
"best_cost": 0.143278952
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.219286686,
"best_cost": 0.143278952
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 81,
"cost_for_plan": 0.046471353,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 3,
"cost": 0.145008465
},
{
"strategy": "SJ-Materialization",
"rows": 3,
"cost": 0.065137975
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 3,
"dups_cost": 0.046471353,
"write_cost": 0.02548291,
"full_lookup_cost": 0.01303857,
"total_cost": 0.084992833
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 3,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.017419989,
"cost_without_join_buffer": 0.034329735,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.017419989,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.012618795,
"cost_without_join_buffer": 0.031514445,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.012618795,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.017419989,
"cost_without_join_buffer": 0.034329735,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.017419989,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2",
"table": "t_outer_2",
"rows_for_plan": 27,
"cost_for_plan": 0.082557964,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_outer_2",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.117018745,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_outer_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_outer_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.378576706,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.293090814
},
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.14187842
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.378576706,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.525270026
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.162582343,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.162582343,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 9,
"cost_for_plan": 0.07775677,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.034303623,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.034303623,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.034303623,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.034303623,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 81,
"cost_for_plan": 0.112060393,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_4,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_4,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.373618354,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.373618354,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.520311674
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.520311674,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 81,
"cost_for_plan": 0.112060393,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_4,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.373618354,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 243,
"cost": 0.245643422
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.373618354,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.520311674
},
{
"chosen_strategy": "SJ-Materialization-Scan"
}
],
"sj_rows_out": 3,
"sj_rows_for_plan": 243,
"sj_filtered": 33.33333333,
"pruned_by_cost": true,
"current_cost": 0.245643422,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 27,
"cost_for_plan": 0.082557964,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 243,
"cost_for_plan": 0.162582343,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.162582343,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.117018745,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_3,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_2,t_inner_3,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.378576706,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 243,
"cost": 0.245643422
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.378576706,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.525270026
},
{
"chosen_strategy": "SJ-Materialization-Scan"
}
],
"sj_rows_out": 3,
"sj_rows_for_plan": 243,
"sj_filtered": 33.33333333,
"pruned_by_cost": true,
"current_cost": 0.245643422,
"best_cost": 0.14187842
}
]
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 27,
"cost_for_plan": 0.037231395,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.065233941,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.065233941,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.065233941,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.065233941,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.065233941,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.065233941,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 243,
"cost_for_plan": 0.102465336,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4,t_outer_2",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.102465336,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4,t_inner_2",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.102465336,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 729,
"cost": 0.388192063
},
{
"chosen_strategy": "SJ-Materialization-Scan"
}
],
"sj_rows_out": 3,
"sj_rows_for_plan": 729,
"sj_filtered": 33.33333333,
"pruned_by_cost": true,
"current_cost": 0.388192063,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_4,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 81,
"cost_for_plan": 0.046471353,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.219286686,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.219286686,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 243,
"cost_for_plan": 0.114053628,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_3,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_3,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 729,
"cost": 0.388192063
},
{
"chosen_strategy": "SJ-Materialization-Scan"
}
],
"sj_rows_out": 3,
"sj_rows_for_plan": 729,
"sj_filtered": 33.33333333,
"pruned_by_cost": true,
"current_cost": 0.388192063,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_1,t_inner_3,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.742727079,
"best_cost": 0.14187842
}
]
}
]
}
]
},
{
"plan_prefix": "t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 27,
"cost_for_plan": 0.02463804,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2",
"table": "t_outer_2",
"rows_for_plan": 243,
"cost_for_plan": 0.075081543,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_outer_2",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.256818738,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.403512058
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.403512058,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_outer_2",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.256818738,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.570641052,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.570641052,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.049238529,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 3,
"cost": 0.328464555
},
{
"strategy": "SJ-Materialization",
"rows": 3,
"cost": 0.065137975
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 3,
"dups_cost": 0.049238529,
"write_cost": 0.02548291,
"full_lookup_cost": 0.01303857,
"total_cost": 0.087760009
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 3,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.017419989,
"cost_without_join_buffer": 0.034329735,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.017419989,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.012618795,
"cost_without_join_buffer": 0.031514445,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.012618795,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.017419989,
"cost_without_join_buffer": 0.034329735,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.017419989,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1",
"table": "t_outer_2",
"rows_for_plan": 27,
"cost_for_plan": 0.082557964,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_outer_2",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.117018745,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_outer_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_outer_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.378576706,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.293090814
},
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.14187842
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.378576706,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.525270026
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.14187842,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.162582343,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.162582343,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 9,
"cost_for_plan": 0.07775677,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.034303623,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.034303623,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.034303623,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.034303623,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 81,
"cost_for_plan": 0.112060393,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_4,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_4,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.373618354,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.373618354,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.520311674
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.520311674,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 81,
"cost_for_plan": 0.112060393,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_4,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.373618354,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 243,
"cost": 0.245643422
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.373618354,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.520311674
},
{
"chosen_strategy": "SJ-Materialization-Scan"
}
],
"sj_rows_out": 3,
"sj_rows_for_plan": 243,
"sj_filtered": 33.33333333,
"pruned_by_cost": true,
"current_cost": 0.245643422,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 27,
"cost_for_plan": 0.082557964,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 243,
"cost_for_plan": 0.162582343,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.162582343,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.117018745,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_3,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_1,t_inner_3,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.378576706,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 243,
"cost": 0.245643422
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.378576706,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.525270026
},
{
"chosen_strategy": "SJ-Materialization-Scan"
}
],
"sj_rows_out": 3,
"sj_rows_for_plan": 243,
"sj_filtered": 33.33333333,
"pruned_by_cost": true,
"current_cost": 0.245643422,
"best_cost": 0.14187842
}
]
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.049238529,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.222053862,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 243,
"cost_for_plan": 0.116820804,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_4,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_4,t_inner_1",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745494255,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_4,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745494255,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.222053862,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.075081543,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.570641052,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.570641052,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_3",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.256818738,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_2,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.256818738,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_outer_1",
"table": "t_inner_4",
"rows_for_plan": 9,
"cost_for_plan": 0.022028022,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.024443331,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.024443331,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.024443331,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.024443331,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.015203373,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.015203373,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.024443331,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.024443331,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 81,
"cost_for_plan": 0.046471353,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2",
"table": "t_inner_1",
"rows_for_plan": 243,
"cost_for_plan": 0.114053628,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization",
"rows": 81,
"cost": 0.116338225
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 81,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2,t_inner_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2,t_inner_1,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.377896186,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 1.00428504,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 1.15097836
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 1.15097836,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.742727079,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.219286686,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.219286686,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.365980006
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.365980006,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 27,
"cost_for_plan": 0.037231395,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.065233941,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.065233941,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.065233941,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.065233941,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.065233941,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.065233941,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1",
"table": "t_outer_2",
"rows_for_plan": 243,
"cost_for_plan": 0.102465336,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1,t_outer_2",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.102465336,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization",
"rows": 9,
"cost": 0.077833006
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 9,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.034303623,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.034303623,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.034303623,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.034303623,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1,t_inner_2",
"table": "t_outer_2",
"rows_for_plan": 81,
"cost_for_plan": 0.112136629,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1,t_inner_2,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1,t_inner_2,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.37369459,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.39832692,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.54502024
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.54502024,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 81,
"cost_for_plan": 0.112136629,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1,t_inner_2,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1,t_inner_2,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.37369459,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.39832692,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.54502024
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.54502024,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.102465336,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_1,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 81,
"cost_for_plan": 0.046471353,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_2",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.219286686,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 243,
"cost_for_plan": 0.114053628,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization",
"rows": 9,
"cost": 0.077833006
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 9,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.034303623,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.034303623,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.034303623,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.034303623,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_2,t_inner_1",
"table": "t_outer_2",
"rows_for_plan": 81,
"cost_for_plan": 0.112136629,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_2,t_inner_1,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_2,t_inner_1,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.37369459,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.409915212,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.556608532
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.556608532,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_2,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 81,
"cost_for_plan": 0.112136629,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_2,t_inner_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_2,t_inner_1,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.37369459,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.409915212,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.556608532
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.556608532,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.219286686,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 81,
"cost_for_plan": 0.046471353,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 243,
"cost": 0.161429386
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.219286686,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.365980006
},
{
"chosen_strategy": "SJ-Materialization-Scan"
}
],
"sj_rows_out": 3,
"sj_rows_for_plan": 243,
"sj_filtered": 33.33333333,
"pruned_by_cost": true,
"current_cost": 0.161429386,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3",
"table": "t_inner_1",
"rows_for_plan": 243,
"cost_for_plan": 0.114053628,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3,t_inner_1",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 729,
"cost": 0.342912727
},
{
"chosen_strategy": "SJ-Materialization-Scan"
}
],
"sj_rows_out": 3,
"sj_rows_for_plan": 729,
"sj_filtered": 33.33333333,
"pruned_by_cost": true,
"current_cost": 0.342912727,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 81,
"cost": 3.678069903
},
{
"strategy": "SJ-Materialization",
"rows": 81,
"cost": 0.116338225
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 81,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3,t_inner_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3,t_inner_1,t_inner_2",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.377896186,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 1.00428504,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 1.15097836
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 1.15097836,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_4,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.219286686,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 27,
"cost_for_plan": 0.02463804,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 243,
"cost_for_plan": 0.075081543,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_outer_2",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.256818738,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_outer_2",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.570641052,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.570641052,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_outer_2",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.256818738,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.403512058
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.403512058,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.049238529,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_1",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.222053862,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.083958496
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_1,t_inner_2",
"table": "t_outer_2",
"rows_for_plan": 243,
"cost_for_plan": 0.163982875,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.163982875,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_1,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.118419277,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_1,t_inner_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_1,t_inner_2,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.379977238,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.518072604,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.664765924
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.664765924,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 243,
"cost_for_plan": 0.116820804,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_1,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745494255,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_1,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745494255,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.075081543,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_2",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.570641052,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.570641052,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.083958496
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_2,t_inner_1",
"table": "t_outer_2",
"rows_for_plan": 243,
"cost_for_plan": 0.163982875,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.163982875,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_2,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.118419277,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_2,t_inner_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_2,t_inner_1,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.379977238,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.55283748,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.6995308
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.6995308,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.256818738,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.049238529,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 243,
"cost": 0.161429386
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.222053862,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.368747182
},
{
"chosen_strategy": "SJ-Materialization-Scan"
}
],
"sj_rows_out": 3,
"sj_rows_for_plan": 243,
"sj_filtered": 33.33333333,
"pruned_by_cost": true,
"current_cost": 0.161429386,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 243,
"cost_for_plan": 0.116820804,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4,t_inner_1",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 729,
"cost": 0.342912727
},
{
"chosen_strategy": "SJ-Materialization-Scan"
}
],
"sj_rows_out": 3,
"sj_rows_for_plan": 729,
"sj_filtered": 33.33333333,
"pruned_by_cost": true,
"current_cost": 0.342912727,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 81,
"cost": 3.680837079
},
{
"strategy": "SJ-Materialization",
"rows": 81,
"cost": 0.119105401
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 81,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4,t_inner_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4,t_inner_1,t_inner_2",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.380663362,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 1.007052216,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 1.153745536
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 1.153745536,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_outer_1,t_inner_3,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.222053862,
"best_cost": 0.14187842
}
]
}
]
}
]
},
{
"plan_prefix": "",
"table": "t_outer_2",
"rows_for_plan": 9,
"cost_for_plan": 0.011443245,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.013559991,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.013559991,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.019513185,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.019513185,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.013559991,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.013559991,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.013559991,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.013559991,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.019513185,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.019513185,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2",
"table": "t_outer_1",
"rows_for_plan": 27,
"cost_for_plan": 0.025003236,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.049603725,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222419058,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.235536086
},
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.084323692
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.222419058,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.369112378
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.118784473,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1,t_inner_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1,t_inner_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.380342434,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.294856542
},
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.143644148
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.380342434,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.527035754
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.143644148,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.164348071,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.164348071,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 243,
"cost_for_plan": 0.117186,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745859451,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745859451,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.745859451,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization",
"rows": 81,
"cost": 0.119470597
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 81,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1,t_inner_4,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.381028558,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 4.867134636
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 1.007417412,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 1.154110732
},
{
"chosen_strategy": "FirstMatch"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 4.867134636,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.222419058,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.222419058,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.075446739,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.257183934,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 2.886640896
},
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.084323692
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.257183934,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.403877254
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_2,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.118784473,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_2,t_inner_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_2,t_inner_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.380342434,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.294856542
},
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.143644148
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.380342434,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.527035754
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.143644148,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_2,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.164348071,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.164348071,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.257183934,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.257183934,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.571006248,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.571006248,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.049603725,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 243,
"cost_for_plan": 0.117186,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745859451,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization",
"rows": 81,
"cost": 0.119470597
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 81,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4,t_inner_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4,t_inner_1,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.381028558,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 4.867134636
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 1.007417412,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 1.154110732
},
{
"chosen_strategy": "FirstMatch"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 4.867134636,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.745859451,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745859451,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222419058,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.222419058,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.222419058,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.235536086
},
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.084323692
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.222419058,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.369112378
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4,t_inner_3",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.118784473,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4,t_inner_3,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4,t_inner_3,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.380342434,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.294856542
},
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.143644148
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.380342434,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.527035754
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.143644148,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_4,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.164348071,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.164348071,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.075446739,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_3",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.257183934,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.257183934,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.571006248,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.571006248,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.257183934,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 2.886640896
},
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.084323692
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.257183934,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.403877254
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_3,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_3,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.118784473,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_3,t_inner_4,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_3,t_inner_4,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.380342434,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.294856542
},
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.143644148
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.380342434,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.527035754
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.143644148,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_outer_1,t_inner_3,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.164348071,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.164348071,
"best_cost": 0.14187842
}
]
}
]
}
]
},
{
"plan_prefix": "t_outer_2",
"table": "t_inner_1",
"rows_for_plan": 27,
"cost_for_plan": 0.025003236,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1",
"table": "t_outer_1",
"rows_for_plan": 81,
"cost_for_plan": 0.049603725,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222419058,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.222419058,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.369112378
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.369112378,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1",
"table": "t_inner_4",
"rows_for_plan": 243,
"cost_for_plan": 0.117186,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745859451,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745859451,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.745859451,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization",
"rows": 81,
"cost": 0.119470597
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 81,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1,t_inner_4,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.381028558,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 1.007417412,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 1.154110732
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 1.154110732,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.222419058,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.222419058,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.075446739,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_2",
"table": "t_outer_1",
"rows_for_plan": 729,
"cost_for_plan": 0.257183934,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 81,
"cost": 0.18666451
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.257183934,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.403877254
},
{
"chosen_strategy": "SJ-Materialization-Scan"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 81,
"sj_filtered": 11.11111111,
"pruned_by_cost": true,
"current_cost": 0.18666451,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.257183934,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.257183934,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.571006248,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.571006248,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.049603725,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_4",
"table": "t_outer_1",
"rows_for_plan": 243,
"cost_for_plan": 0.117186,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_4,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_4,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745859451,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745859451,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_4,t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.745859451,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745859451,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222419058,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.222419058,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.222419058,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.084323692
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_4,t_inner_3",
"table": "t_outer_1",
"rows_for_plan": 81,
"cost_for_plan": 0.118784473,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_4,t_inner_3,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_4,t_inner_3,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.380342434,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.5184378,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.66513112
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.66513112,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_4,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.164348071,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.164348071,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.075446739,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_3",
"table": "t_outer_1",
"rows_for_plan": 729,
"cost_for_plan": 0.257183934,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.257183934,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.571006248,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.571006248,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.257183934,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.084323692
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_3,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_3,t_inner_4",
"table": "t_outer_1",
"rows_for_plan": 81,
"cost_for_plan": 0.118784473,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_3,t_inner_4,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_3,t_inner_4,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.380342434,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.553202676,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.699895996
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.699895996,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_1,t_inner_3,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.164348071,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.164348071,
"best_cost": 0.14187842
}
]
}
]
}
]
},
{
"plan_prefix": "t_outer_2",
"table": "t_inner_2",
"rows_for_plan": 81,
"cost_for_plan": 0.03095643,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.052791837,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.052791837,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.052791837,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.052791837,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.052791837,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.052791837,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.128444019,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.128444019,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2",
"table": "t_outer_1",
"rows_for_plan": 243,
"cost_for_plan": 0.083748267,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_2,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_outer_1",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.265485462,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.265485462,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.412178782
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.412178782,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_outer_1",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.265485462,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.265485462,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.579307776,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.579307776,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 243,
"cost_for_plan": 0.083748267,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_1",
"table": "t_outer_1",
"rows_for_plan": 729,
"cost_for_plan": 0.265485462,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 81,
"cost": 0.18666451
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.265485462,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.412178782
},
{
"chosen_strategy": "SJ-Materialization-Scan"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 81,
"sj_filtered": 11.11111111,
"pruned_by_cost": true,
"current_cost": 0.18666451,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.265485462,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.265485462,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.579307776,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.579307776,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 243,
"cost_for_plan": 0.083748267,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_4",
"table": "t_outer_1",
"rows_for_plan": 729,
"cost_for_plan": 0.265485462,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.265485462,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.265485462,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.265485462,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.579307776,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization",
"rows": 81,
"cost": 0.100823302
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 81,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.082372713,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.082372713,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.082372713,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.082372713,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_4,t_inner_3",
"table": "t_outer_1",
"rows_for_plan": 243,
"cost_for_plan": 0.183196015,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.183196015,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_2,t_inner_4,t_inner_3",
"table": "t_inner_1",
"rows_for_plan": 243,
"cost_for_plan": 0.183196015,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.183196015,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.159400449,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.159400449,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2",
"table": "t_inner_4",
"rows_for_plan": 27,
"cost_for_plan": 0.025003236,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4",
"table": "t_outer_1",
"rows_for_plan": 81,
"cost_for_plan": 0.049603725,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1",
"table": "t_inner_1",
"rows_for_plan": 243,
"cost_for_plan": 0.117186,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745859451,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization",
"rows": 81,
"cost": 0.119470597
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 81,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1,t_inner_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1,t_inner_1,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.381028558,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 1.007417412,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 1.154110732
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 1.154110732,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.745859451,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745859451,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222419058,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.222419058,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.222419058,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.222419058,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.369112378
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.369112378,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.049603725,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_1",
"table": "t_outer_1",
"rows_for_plan": 243,
"cost_for_plan": 0.117186,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_1,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_1,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745859451,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745859451,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_1,t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.745859451,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745859451,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222419058,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.222419058,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.222419058,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.222419058,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.075446739,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_2",
"table": "t_outer_1",
"rows_for_plan": 729,
"cost_for_plan": 0.257183934,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.257183934,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.257183934,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.257183934,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.571006248,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.571006248,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.075446739,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 9,
"cost": 0.414954195
},
{
"strategy": "SJ-Materialization",
"rows": 9,
"cost": 0.067248229
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 9,
"dups_cost": 0.075446739,
"write_cost": 0.02644873,
"full_lookup_cost": 0.03911571,
"total_cost": 0.141011179
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 9,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.016846755,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.016846755,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.016846755,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.016846755,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.029373477,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.029373477,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3",
"table": "t_outer_1",
"rows_for_plan": 27,
"cost_for_plan": 0.084094984,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_outer_1",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.118555765,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_outer_1,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_outer_1,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.380113726,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.294627834
},
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.14341544
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.380113726,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.526807046
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.14341544,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.164119363,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.164119363,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3",
"table": "t_inner_1",
"rows_for_plan": 27,
"cost_for_plan": 0.084094984,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_inner_1",
"table": "t_outer_1",
"rows_for_plan": 81,
"cost_for_plan": 0.118555765,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_inner_1,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_inner_1,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.380113726,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.380113726,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.526807046
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.526807046,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.164119363,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.164119363,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 81,
"cost_for_plan": 0.096621706,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.082372713,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.082372713,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.082372713,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.082372713,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_inner_2",
"table": "t_outer_1",
"rows_for_plan": 243,
"cost_for_plan": 0.178994419,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.178994419,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_4,t_inner_3,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 243,
"cost_for_plan": 0.178994419,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.178994419,
"best_cost": 0.14187842
}
]
}
]
}
]
},
{
"plan_prefix": "t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 81,
"cost_for_plan": 0.03095643,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.128444019,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.128444019,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.052791837,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.052791837,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.052791837,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.052791837,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.052791837,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.052791837,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3",
"table": "t_outer_1",
"rows_for_plan": 243,
"cost_for_plan": 0.083748267,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_outer_1",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.265485462,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.265485462,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.579307776,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.579307776,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_outer_1",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.265485462,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.265485462,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.412178782
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.412178782,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3",
"table": "t_inner_1",
"rows_for_plan": 243,
"cost_for_plan": 0.083748267,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_1",
"table": "t_outer_1",
"rows_for_plan": 729,
"cost_for_plan": 0.265485462,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.265485462,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.579307776,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.579307776,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.265485462,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.265485462,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.159400449,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.159400449,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 243,
"cost_for_plan": 0.083748267,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 9,
"cost": 0.965322465
},
{
"strategy": "SJ-Materialization",
"rows": 9,
"cost": 0.067248229
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 9,
"dups_cost": 0.083748267,
"write_cost": 0.02644873,
"full_lookup_cost": 0.03911571,
"total_cost": 0.149312707
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 9,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.016846755,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.016846755,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.029373477,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.029373477,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.016846755,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.016846755,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4",
"table": "t_outer_1",
"rows_for_plan": 27,
"cost_for_plan": 0.084094984,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_outer_1",
"table": "t_inner_1",
"rows_for_plan": 81,
"cost_for_plan": 0.118555765,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_outer_1,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_outer_1,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.380113726,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.294627834
},
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.14341544
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.380113726,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.526807046
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.14341544,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.164119363,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.164119363,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4",
"table": "t_inner_1",
"rows_for_plan": 27,
"cost_for_plan": 0.084094984,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_inner_1",
"table": "t_outer_1",
"rows_for_plan": 81,
"cost_for_plan": 0.118555765,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_inner_1,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_inner_1,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.380113726,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 9,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.380113726,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.526807046
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.526807046,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.164119363,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.164119363,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 81,
"cost_for_plan": 0.096621706,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.082372713,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.082372713,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.082372713,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.082372713,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_inner_2",
"table": "t_outer_1",
"rows_for_plan": 243,
"cost_for_plan": 0.178994419,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.178994419,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_outer_2,t_inner_3,t_inner_4,t_inner_2",
"table": "t_inner_1",
"rows_for_plan": 243,
"cost_for_plan": 0.178994419,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.178994419,
"best_cost": 0.14187842
}
]
}
]
}
]
}
]
},
{
"plan_prefix": "",
"table": "t_inner_1",
"rows_for_plan": 3,
"cost_for_plan": 0.010504815,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.011523207,
"cost_without_join_buffer": 0.031514445,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.011523207,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.014133225,
"cost_without_join_buffer": 0.034329735,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.014133225,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.014133225,
"cost_without_join_buffer": 0.034329735,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.014133225,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.011523207,
"cost_without_join_buffer": 0.031514445,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.011523207,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.014133225,
"cost_without_join_buffer": 0.034329735,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.014133225,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1",
"table": "t_outer_1",
"rows_for_plan": 9,
"cost_for_plan": 0.022028022,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.024443331,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.024443331,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.024443331,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.024443331,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.015203373,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.015203373,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.024443331,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.024443331,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1",
"table": "t_outer_2",
"rows_for_plan": 81,
"cost_for_plan": 0.046471353,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_1,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_outer_2",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 1,
"tmp_table_rows": 27,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.219286686,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.365980006
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.365980006,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_outer_2",
"table": "t_inner_4",
"rows_for_plan": 243,
"cost_for_plan": 0.114053628,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_1,t_outer_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_outer_2,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.742727079,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_outer_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization",
"rows": 81,
"cost": 0.116338225
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 81,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_1,t_outer_2,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_outer_2,t_inner_4,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.377896186,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 1,
"tmp_table_rows": 27,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 1.00428504,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 1.15097836
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 1.15097836,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.219286686,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 81,
"cost_for_plan": 0.046471353,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 1,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 3,
"dups_cost": 0.046471353,
"write_cost": 0.02548291,
"full_lookup_cost": 0.01303857,
"total_cost": 0.084992833
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 3,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.017419989,
"cost_without_join_buffer": 0.034329735,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.017419989,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.012618795,
"cost_without_join_buffer": 0.031514445,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.012618795,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.017419989,
"cost_without_join_buffer": 0.034329735,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.017419989,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_2",
"table": "t_outer_2",
"rows_for_plan": 27,
"cost_for_plan": 0.102412822,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_2,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_2,t_outer_2",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.136873603,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_2,t_outer_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_2,t_outer_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.398431564,
"semijoin_strategy_choice": [
{
"strategy": "FirstMatch",
"rows": 27,
"cost": 1.312945672
},
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.161733278
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 27,
"tmp_table_rows": 1,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.398431564,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.545124884
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.161733278,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_2,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.182437201,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.182437201,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 9,
"cost_for_plan": 0.097611628,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.034303623,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.034303623,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.034303623,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.034303623,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_2,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 81,
"cost_for_plan": 0.131915251,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_2,t_inner_4,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_2,t_inner_4,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.393473212,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.393473212,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.540166532
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.540166532,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 81,
"cost_for_plan": 0.131915251,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_2,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_2,t_inner_4,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.393473212,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 243,
"cost": 0.26549828
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.393473212,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.540166532
},
{
"chosen_strategy": "SJ-Materialization-Scan"
}
],
"sj_rows_out": 3,
"sj_rows_for_plan": 243,
"sj_filtered": 33.33333333,
"pruned_by_cost": true,
"current_cost": 0.26549828,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 27,
"cost_for_plan": 0.102412822,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_2,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_2,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 243,
"cost_for_plan": 0.182437201,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.182437201,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_2,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.136873603,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_2,t_inner_3,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_2,t_inner_3,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.398431564,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 243,
"cost": 0.26549828
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 3,
"tmp_table_rows": 9,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.398431564,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.545124884
},
{
"chosen_strategy": "SJ-Materialization-Scan"
}
],
"sj_rows_out": 3,
"sj_rows_for_plan": 243,
"sj_filtered": 33.33333333,
"pruned_by_cost": true,
"current_cost": 0.26549828,
"best_cost": 0.14187842
}
]
}
]
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1",
"table": "t_inner_4",
"rows_for_plan": 27,
"cost_for_plan": 0.037231395,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.065233941,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.065233941,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.065233941,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.065233941,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.065233941,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.065233941,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 243,
"cost_for_plan": 0.102465336,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_4,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_4,t_outer_2",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_4,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.102465336,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_4,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_4,t_inner_2",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_4,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.102465336,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_4,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 729,
"cost": 0.388192063
},
{
"chosen_strategy": "SJ-Materialization-Scan"
}
],
"sj_rows_out": 3,
"sj_rows_for_plan": 729,
"sj_filtered": 33.33333333,
"pruned_by_cost": true,
"current_cost": 0.388192063,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_4,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 81,
"cost_for_plan": 0.046471353,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.219286686,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.219286686,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 243,
"cost_for_plan": 0.114053628,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_3,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_3,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 729,
"cost": 0.388192063
},
{
"chosen_strategy": "SJ-Materialization-Scan"
}
],
"sj_rows_out": 3,
"sj_rows_for_plan": 729,
"sj_filtered": 33.33333333,
"pruned_by_cost": true,
"current_cost": 0.388192063,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_outer_1,t_inner_3,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.742727079,
"best_cost": 0.14187842
}
]
}
]
}
]
},
{
"plan_prefix": "t_inner_1",
"table": "t_outer_2",
"rows_for_plan": 27,
"cost_for_plan": 0.02463804,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_2",
"table": "t_outer_1",
"rows_for_plan": 81,
"cost_for_plan": 0.049238529,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_2,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_2,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 1,
"tmp_table_rows": 27,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.222053862,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.368747182
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.368747182,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_outer_2,t_outer_1",
"table": "t_inner_4",
"rows_for_plan": 243,
"cost_for_plan": 0.116820804,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_2,t_outer_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_2,t_outer_1,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745494255,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_outer_2,t_outer_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization",
"rows": 81,
"cost": 0.119105401
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 81,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_2,t_outer_1,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_2,t_outer_1,t_inner_4,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.380663362,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 1,
"tmp_table_rows": 27,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 1.007052216,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 1.153745536
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 1.153745536,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_2,t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.222053862,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_2",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.075081543,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_2,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_2,t_inner_2",
"table": "t_outer_1",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 1,
"tmp_table_rows": 27,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.256818738,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.403512058
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.403512058,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_outer_2,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.256818738,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_outer_2,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.570641052,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.570641052,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_2",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.049238529,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_2,t_inner_4",
"table": "t_outer_1",
"rows_for_plan": 243,
"cost_for_plan": 0.116820804,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_2,t_inner_4,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_2,t_inner_4,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745494255,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_outer_2,t_inner_4,t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745494255,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_2,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.222053862,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_outer_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.083958496
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_2,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_2,t_inner_4,t_inner_3",
"table": "t_outer_1",
"rows_for_plan": 81,
"cost_for_plan": 0.118419277,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_2,t_inner_4,t_inner_3,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_2,t_inner_4,t_inner_3,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.379977238,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 1,
"tmp_table_rows": 27,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.518072604,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.664765924
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.664765924,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_2,t_inner_4,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.163982875,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.163982875,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.075081543,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_2,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_2,t_inner_3",
"table": "t_outer_1",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.256818738,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_outer_2,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.570641052,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.570641052,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_outer_2,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization",
"rows": 27,
"cost": 0.083958496
},
{
"chosen_strategy": "SJ-Materialization"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_2,t_inner_3,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.034460781,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.034460781,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_2,t_inner_3,t_inner_4",
"table": "t_outer_1",
"rows_for_plan": 81,
"cost_for_plan": 0.118419277,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_outer_2,t_inner_3,t_inner_4,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.261557961,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.261557961,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_2,t_inner_3,t_inner_4,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.379977238,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 1,
"tmp_table_rows": 27,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.55283748,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.6995308
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": true,
"current_cost": 0.6995308,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_outer_2,t_inner_3,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.163982875,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.163982875,
"best_cost": 0.14187842
}
]
}
]
}
]
},
{
"plan_prefix": "t_inner_1",
"table": "t_inner_2",
"rows_for_plan": 27,
"cost_for_plan": 0.02463804,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_2",
"table": "t_outer_1",
"rows_for_plan": 81,
"cost_for_plan": 0.049238529,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 9,
"cost": 0.076300847
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 1,
"tmp_table_rows": 3,
"sj_inner_fanout": 27,
"rows": 3,
"dups_cost": 0.049238529,
"write_cost": 0.02548291,
"full_lookup_cost": 0.01303857,
"total_cost": 0.087760009
},
{
"chosen_strategy": "SJ-Materialization-Scan"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 9,
"sj_filtered": 11.11111111,
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_2,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.029373477,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.029373477,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.016846755,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.016846755,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.029373477,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.029373477,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_2,t_outer_1",
"table": "t_outer_2",
"rows_for_plan": 81,
"cost_for_plan": 0.105674324,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_2,t_outer_1,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.082372713,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.082372713,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.217186647,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.217186647,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_2,t_outer_1,t_outer_2",
"table": "t_inner_4",
"rows_for_plan": 243,
"cost_for_plan": 0.188047037,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.188047037,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_2,t_outer_1,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.322860971,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.322860971,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_2,t_outer_1",
"table": "t_inner_4",
"rows_for_plan": 27,
"cost_for_plan": 0.093147602,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_2,t_outer_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_2,t_outer_1,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 243,
"cost_for_plan": 0.173171981,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.173171981,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_2,t_outer_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.173171981,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.173171981,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_2,t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 81,
"cost_for_plan": 0.105674324,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_2,t_outer_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.082372713,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.082372713,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.217186647,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.217186647,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_2,t_outer_1,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.322860971,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.322860971,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_2,t_outer_1,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 243,
"cost_for_plan": 0.188047037,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.188047037,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_2",
"table": "t_outer_2",
"rows_for_plan": 243,
"cost_for_plan": 0.075081543,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_2,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_2,t_outer_2",
"table": "t_outer_1",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 81,
"cost": 0.109537088
},
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 1,
"tmp_table_rows": 27,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.256818738,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.403512058
},
{
"chosen_strategy": "SJ-Materialization-Scan"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 81,
"sj_filtered": 11.11111111,
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_2,t_outer_2,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.082372713,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.082372713,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.217186647,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.217186647,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_2,t_outer_2,t_outer_1",
"table": "t_inner_4",
"rows_for_plan": 243,
"cost_for_plan": 0.191909801,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.191909801,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_2,t_outer_2,t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.326723735,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.326723735,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_2,t_outer_2",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.256818738,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_2,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.570641052,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.570641052,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.049238529,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_2,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_2,t_inner_4",
"table": "t_outer_1",
"rows_for_plan": 243,
"cost_for_plan": 0.116820804,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 27,
"cost": 0.093147602
},
{
"chosen_strategy": "SJ-Materialization-Scan"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 27,
"sj_filtered": 11.11111111,
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_2,t_inner_4,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.080024379,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.080024379,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_2,t_inner_4,t_outer_1",
"table": "t_outer_2",
"rows_for_plan": 243,
"cost_for_plan": 0.173171981,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.173171981,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_2,t_inner_4,t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.173171981,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.173171981,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_2,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.222053862,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_2,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.222053862,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.075081543,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_2,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_2,t_inner_3",
"table": "t_outer_1",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 81,
"cost": 0.109537088
},
{
"chosen_strategy": "SJ-Materialization-Scan"
}
],
"sj_rows_out": 0.333333333,
"sj_rows_for_plan": 81,
"sj_filtered": 11.11111111,
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_2,t_inner_3,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.082372713,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.082372713,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.217186647,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.217186647,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_2,t_inner_3,t_outer_1",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.326723735,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.326723735,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_2,t_inner_3,t_outer_1",
"table": "t_inner_4",
"rows_for_plan": 243,
"cost_for_plan": 0.191909801,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.191909801,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_2,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.570641052,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.570641052,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_2,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.256818738,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_inner_1",
"table": "t_inner_4",
"rows_for_plan": 9,
"cost_for_plan": 0.022028022,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.024443331,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.024443331,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.024443331,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.024443331,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.015203373,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.015203373,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.024443331,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.024443331,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_4",
"table": "t_outer_1",
"rows_for_plan": 27,
"cost_for_plan": 0.037231395,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_4,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.065233941,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.065233941,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.065233941,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.065233941,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.065233941,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.065233941,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_4,t_outer_1",
"table": "t_outer_2",
"rows_for_plan": 243,
"cost_for_plan": 0.102465336,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_4,t_outer_1,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_4,t_outer_1,t_outer_2",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_4,t_outer_1,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_4,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.102465336,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_4,t_outer_1,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_4,t_outer_1,t_inner_2",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_4,t_outer_1,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_4,t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 243,
"cost_for_plan": 0.102465336,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_4,t_outer_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_4,t_outer_1,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_4,t_outer_1,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.731138787,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.731138787,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 81,
"cost_for_plan": 0.046471353,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_4,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_4,t_outer_2",
"table": "t_outer_1",
"rows_for_plan": 243,
"cost_for_plan": 0.114053628,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_4,t_outer_2,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_4,t_outer_2,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.742727079,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_4,t_outer_2,t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.742727079,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_4,t_outer_2",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.219286686,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_4,t_outer_2",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.219286686,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 81,
"cost_for_plan": 0.046471353,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_4,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_4,t_inner_2",
"table": "t_outer_1",
"rows_for_plan": 243,
"cost_for_plan": 0.114053628,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_4,t_inner_2,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_4,t_inner_2,t_outer_1",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.742727079,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_4,t_inner_2,t_outer_1",
"table": "t_inner_3",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.742727079,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_4,t_inner_2",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.219286686,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_4,t_inner_2",
"table": "t_inner_3",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.219286686,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_4",
"table": "t_inner_3",
"rows_for_plan": 81,
"cost_for_plan": 0.046471353,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_4,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_4,t_inner_3",
"table": "t_outer_1",
"rows_for_plan": 243,
"cost_for_plan": 0.114053628,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_4,t_inner_3,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_4,t_inner_3,t_outer_1",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 729,
"cost": 0.342912727
},
{
"chosen_strategy": "SJ-Materialization-Scan"
}
],
"sj_rows_out": 3,
"sj_rows_for_plan": 729,
"sj_filtered": 33.33333333,
"pruned_by_cost": true,
"current_cost": 0.342912727,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_4,t_inner_3,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.742727079,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.742727079,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_4,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 243,
"cost": 0.161429386
},
{
"chosen_strategy": "SJ-Materialization-Scan"
}
],
"sj_rows_out": 3,
"sj_rows_for_plan": 243,
"sj_filtered": 33.33333333,
"pruned_by_cost": true,
"current_cost": 0.161429386,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_4,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.219286686,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.219286686,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_inner_1",
"table": "t_inner_3",
"rows_for_plan": 27,
"cost_for_plan": 0.02463804,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_3",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_3",
"table": "t_outer_1",
"rows_for_plan": 81,
"cost_for_plan": 0.049238529,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_3,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_3,t_outer_1",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.222053862,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_3,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.222053862,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_3,t_outer_1",
"table": "t_inner_4",
"rows_for_plan": 243,
"cost_for_plan": 0.116820804,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_3,t_outer_1,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_3,t_outer_1,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745494255,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_3,t_outer_1,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745494255,
"best_cost": 0.14187842
}
]
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_3",
"table": "t_outer_2",
"rows_for_plan": 243,
"cost_for_plan": 0.075081543,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_3,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_3,t_outer_2",
"table": "t_outer_1",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.256818738,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_3,t_outer_2",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.570641052,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.570641052,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_3,t_outer_2",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.256818738,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_3",
"table": "t_inner_2",
"rows_for_plan": 243,
"cost_for_plan": 0.075081543,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_3,t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_3,t_inner_2",
"table": "t_outer_1",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.256818738,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_3,t_inner_2",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.570641052,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.570641052,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_3,t_inner_2",
"table": "t_inner_4",
"rows_for_plan": 729,
"cost_for_plan": 0.256818738,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.256818738,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_3",
"table": "t_inner_4",
"rows_for_plan": 81,
"cost_for_plan": 0.049238529,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_3,t_inner_4",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.172815333,
"cost_without_join_buffer": 0.926902845,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.172815333,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 81
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.067582275,
"cost_without_join_buffer": 0.850890015,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.067582275,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_3,t_inner_4",
"table": "t_outer_1",
"rows_for_plan": 243,
"cost_for_plan": 0.116820804,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_1,t_inner_3,t_inner_4,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.628673451,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.628673451,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_3,t_inner_4,t_outer_1",
"table": "t_outer_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 729,
"cost": 0.342912727
},
{
"chosen_strategy": "SJ-Materialization-Scan"
}
],
"sj_rows_out": 3,
"sj_rows_for_plan": 729,
"sj_filtered": 33.33333333,
"pruned_by_cost": true,
"current_cost": 0.342912727,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_3,t_inner_4,t_outer_1",
"table": "t_inner_2",
"rows_for_plan": 2187,
"cost_for_plan": 0.745494255,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.745494255,
"best_cost": 0.14187842
}
]
},
{
"plan_prefix": "t_inner_1,t_inner_3,t_inner_4",
"table": "t_outer_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [
{
"strategy": "SJ-Materialization-Scan",
"rows": 243,
"cost": 0.161429386
},
{
"chosen_strategy": "SJ-Materialization-Scan"
}
],
"sj_rows_out": 3,
"sj_rows_for_plan": 243,
"sj_filtered": 33.33333333,
"pruned_by_cost": true,
"current_cost": 0.161429386,
"best_cost": 0.14187842
},
{
"plan_prefix": "t_inner_1,t_inner_3,t_inner_4",
"table": "t_inner_2",
"rows_for_plan": 729,
"cost_for_plan": 0.222053862,
"semijoin_strategy_choice": [],
"pruned_by_cost": true,
"current_cost": 0.222053862,
"best_cost": 0.14187842
}
]
}
]
}
]
},
{
"plan_prefix": "",
"table": "t_inner_2",
"rows_for_plan": 9,
"cost_for_plan": 0.011443245,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.013559991,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.013559991,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_1",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.013559991,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.013559991,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.019513185,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.019513185,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.013559991,
"cost_without_join_buffer": 0.094543335,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.013559991,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 9
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.019513185,
"cost_without_join_buffer": 0.102989205,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.019513185,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_2",
"table": "t_outer_1",
"rows_for_plan": 27,
"cost_for_plan": 0.025003236,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_2,t_outer_1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_outer_2",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.024600489,
"cost_without_join_buffer": 0.283630005,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.024600489,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 27
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.050443503,
"cost_without_join_buffer": 0.308967615,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.050443503,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_2,t_outer_1",
"table": "t_outer_2",
"rows_for_plan": 243,
"cost_for_plan": 0.075446739,
"semijoin_strategy_choice": [],
"rest_of_plan": [
{
"plan_prefix": "t_inner_2,t_outer_1,t_outer_2",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t_inner_1",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_4",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.181737195,
"cost_without_join_buffer": 2.552670045,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.181737195,
"uses_join_buffering": true
}
}
},
{
"best_access_path": {
"table": "t_inner_3",
"plan_details": {
"record_count": 243
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 9,
"rows_after_filter": 9,
"rows_out": 9,
"cost": 0.495559509,
"cost_without_join_buffer": 2.780708535,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 9,
"rows_out": 9,
"cost": 0.495559509,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t_inner_2,t_outer_1,t_outer_2",
"table": "t_inner_1",
"rows_for_plan": 729,
"cost_for_plan": 0.257183934,
"semijoin_strategy_choice": [
{
"strategy": "DuplicateWeedout",
"prefix_row_count": 1,
"tmp_table_rows": 27,
"sj_inner_fanout": 27,
"rows": 27,
"dups_cost": 0.257183934,
"write_cost": 0.02934619,
"full_lookup_cost": 0.11734713,
"total_cost": 0.403877254
},
{
"chosen_strategy": "DuplicateWeedout"
}
],
"sj_rows_out": 0.111111111,
"sj_rows_for_plan": 27,
"sj_filtered": 3.703703704,
"pruned_by_cost": 694774 0
set @@optimizer_switch= @save_optimizer_switch;
drop table t1,t2;
#
# MDEV-18942: Json_writer::add_bool: Conditional jump or move depends on uninitialised value upon
# fulltext search under optimizer trace
#
CREATE TABLE t1 (f VARCHAR(255), FULLTEXT(f));
CREATE VIEW v1 AS SELECT * FROM t1;
INSERT INTO t1 VALUES ('fooba'),('abcde'),('xyzab');
SET optimizer_trace = 'enabled=on';
SELECT COUNT(*) FROM v1 WHERE MATCH (f) AGAINST ('fooba');
COUNT(*)
1
DROP VIEW v1;
DROP TABLE t1;
#
# MDEV-18741: Optimizer trace: multi-part key ranges are printed incorrectly.
#
create table t0(a int);
insert into t0 values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
create table one_k (a int);
insert into one_k select A.a + B.a*10 + C.a*100 from t0 A, t0 B, t0 C;
create table t1 ( a int, b int, key a_b(a,b));
insert into t1 select a,a from one_k;
set optimizer_trace='enabled=on';
explain select * from t1 force index (a_b) where a=2 and b=4;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ref a_b a_b 10 const,const 1 Using index
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.analyzing_range_alternatives')) AS JS from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
{
"range_scan_alternatives":
[
{
"index": "a_b",
"ranges":
["(2,4) <= (a,b) <= (2,4)"],
"rowid_ordered": true,
"using_mrr": false,
"index_only": true,
"rows": 1,
"cost": 0.001478954,
"chosen": true
}
],
"analyzing_roworder_intersect":
{
"cause": "too few roworder scans"
},
"analyzing_index_merge_union":
[]
}
]
explain select * from t1 where a >= 900 and b between 10 and 20;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range a_b a_b 10 NULL 107 Using where; Using index
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.analyzing_range_alternatives')) AS JS from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
{
"range_scan_alternatives":
[
{
"index": "a_b",
"ranges":
["(900,10) <= (a,b)"],
"rowid_ordered": false,
"using_mrr": false,
"index_only": true,
"rows": 107,
"cost": 0.016135574,
"chosen": true
}
],
"analyzing_roworder_intersect":
{
"cause": "too few roworder scans"
},
"analyzing_index_merge_union":
[]
}
]
drop table t0,t1;
create table t1 (start_date date, end_date date, filler char(100), key(start_date, end_date)) ;
insert into t1 select date_add(now(), interval a day), date_add(now(), interval (a+7) day), 'data' from one_k;
explain select * from t1 force index(start_date) where start_date >= '2019-02-10' and end_date <'2019-04-01';
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range start_date start_date 8 NULL 1000 Using index condition
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.analyzing_range_alternatives')) AS JS from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
{
"range_scan_alternatives":
[
{
"index": "start_date",
"ranges":
["(2019-02-10,NULL) < (start_date,end_date)"],
"rowid_ordered": false,
"using_mrr": false,
"index_only": false,
"rows": 1000,
"cost": 1.235690484,
"chosen": true
}
],
"analyzing_roworder_intersect":
{
"cause": "too few roworder scans"
},
"analyzing_index_merge_union":
[]
}
]
drop table t1,one_k;
create table ten(a int);
insert into ten values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
create table t1 (
a int not null,
b int not null,
c int not null,
d int not null,
key a_b_c(a,b,c)
);
insert into t1 select a,a, a,a from ten;
explain select * from t1 force index(a_b_c) where a between 1 and 4 and b < 50;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range a_b_c a_b_c 8 NULL 4 Using index condition
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.analyzing_range_alternatives')) AS JS from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
{
"range_scan_alternatives":
[
{
"index": "a_b_c",
"ranges":
["(1) <= (a,b) < (4,50)"],
"rowid_ordered": false,
"using_mrr": false,
"index_only": false,
"rows": 4,
"cost": 0.00627616,
"chosen": true
}
],
"analyzing_roworder_intersect":
{
"cause": "too few roworder scans"
},
"analyzing_index_merge_union":
[]
}
]
drop table ten,t1;
# Ported test from MYSQL for ranges involving Binary column
CREATE TABLE t1(i INT PRIMARY KEY, b BINARY(16), INDEX i_b(b));
INSERT INTO t1 VALUES (1, x'D95B94336A9946A39CF5B58CFE772D8C');
INSERT INTO t1 VALUES (2, NULL);
EXPLAIN SELECT * FROM t1 WHERE b IN (0xD95B94336A9946A39CF5B58CFE772D8C);
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ref i_b i_b 17 const 1 Using index condition
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.analyzing_range_alternatives')) AS JS from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
{
"range_scan_alternatives":
[
{
"index": "i_b",
"ranges":
["(\xD9[\x943j\x99F\xA3\x9C\xF5\xB5\x8C\xFEw-\x8C) <= (b) <= (\xD9[\x943j\x99F\xA3\x9C\xF5\xB5\x8C\xFEw-\x8C)"],
"rowid_ordered": true,
"using_mrr": false,
"index_only": false,
"rows": 1,
"cost": 0.002574553,
"chosen": true
}
],
"analyzing_roworder_intersect":
{
"cause": "too few roworder scans"
},
"analyzing_index_merge_union":
[]
}
]
EXPLAIN SELECT * FROM t1 WHERE b IS NULL;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ref i_b i_b 17 const 1 Using index condition
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.analyzing_range_alternatives')) AS JS from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
{
"range_scan_alternatives":
[
{
"index": "i_b",
"ranges":
["(NULL) <= (b) <= (NULL)"],
"rowid_ordered": true,
"using_mrr": false,
"index_only": false,
"rows": 1,
"cost": 0.002574553,
"chosen": true
}
],
"analyzing_roworder_intersect":
{
"cause": "too few roworder scans"
},
"analyzing_index_merge_union":
[]
}
]
drop table t1;
#
# MDEV-18880: Optimizer trace prints date in hexadecimal
#
CREATE TABLE t1(i INT PRIMARY KEY, b VARCHAR(10) CHARSET BINARY , INDEX i_b(b));
INSERT INTO t1 VALUES (1, 'ab\n');
INSERT INTO t1 VALUES (2, NULL);
set optimizer_trace=1;
EXPLAIN SELECT * FROM t1 WHERE b='ab\n';
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ref i_b i_b 13 const 1 Using index condition
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.analyzing_range_alternatives')) AS JS from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
{
"range_scan_alternatives":
[
{
"index": "i_b",
"ranges":
["(ab\x0A) <= (b) <= (ab\x0A)"],
"rowid_ordered": true,
"using_mrr": false,
"index_only": false,
"rows": 1,
"cost": 0.002574553,
"chosen": true
}
],
"analyzing_roworder_intersect":
{
"cause": "too few roworder scans"
},
"analyzing_index_merge_union":
[]
}
]
ALTER TABLE t1 modify column b BINARY(10) AFTER i;
EXPLAIN SELECT * FROM t1 WHERE b='ab\n';
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ref i_b i_b 11 const 1 Using index condition
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.analyzing_range_alternatives')) AS JS from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
{
"range_scan_alternatives":
[
{
"index": "i_b",
"ranges":
["(ab\x0A\x00\x00\x00\x00\x00\x00\x00) <= (b) <= (ab\x0A\x00\x00\x00\x00\x00\x00\x00)"],
"rowid_ordered": true,
"using_mrr": false,
"index_only": false,
"rows": 1,
"cost": 0.002574553,
"chosen": true
}
],
"analyzing_roworder_intersect":
{
"cause": "too few roworder scans"
},
"analyzing_index_merge_union":
[]
}
]
ALTER TABLE t1 modify column b VARBINARY(10) AFTER i;
EXPLAIN SELECT * FROM t1 WHERE b='ab\n';
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ref i_b i_b 13 const 1 Using index condition
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.analyzing_range_alternatives')) AS JS from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
{
"range_scan_alternatives":
[
{
"index": "i_b",
"ranges":
["(ab\x0A) <= (b) <= (ab\x0A)"],
"rowid_ordered": true,
"using_mrr": false,
"index_only": false,
"rows": 1,
"cost": 0.002574553,
"chosen": true
}
],
"analyzing_roworder_intersect":
{
"cause": "too few roworder scans"
},
"analyzing_index_merge_union":
[]
}
]
drop table t1;
CREATE TABLE t1(i INT PRIMARY KEY, b CHAR(10), INDEX i_b(b)) CHARSET=latin1;
INSERT INTO t1 VALUES (1, 'ab\n');
INSERT INTO t1 VALUES (2, NULL);
EXPLAIN SELECT * FROM t1 WHERE b='ab\n';
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ref i_b i_b 11 const 1 Using index condition
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.analyzing_range_alternatives')) AS JS from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
{
"range_scan_alternatives":
[
{
"index": "i_b",
"ranges":
["(ab\n) <= (b) <= (ab\n)"],
"rowid_ordered": true,
"using_mrr": false,
"index_only": false,
"rows": 1,
"cost": 0.002574553,
"chosen": true
}
],
"analyzing_roworder_intersect":
{
"cause": "too few roworder scans"
},
"analyzing_index_merge_union":
[]
}
]
drop table t1;
CREATE TABLE t1(i INT PRIMARY KEY, b blob , INDEX i_b(b));
Warnings:
Note 1071 Specified key was too long; max key length is 1000 bytes
INSERT INTO t1 VALUES (1, 'ab\n');
INSERT INTO t1 VALUES (2, NULL);
set optimizer_trace=1;
EXPLAIN SELECT * FROM t1 WHERE b= 'ab\n';
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ref i_b i_b 1003 const 1 Using where
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.analyzing_range_alternatives')) AS JS from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
{
"range_scan_alternatives":
[
{
"index": "i_b",
"ranges":
["(ab\x0A) <= (b) <= (ab\x0A)"],
"rowid_ordered": false,
"using_mrr": false,
"index_only": false,
"rows": 1,
"cost": 0.002574553,
"chosen": true
}
],
"analyzing_roworder_intersect":
{
"cause": "too few roworder scans"
},
"analyzing_index_merge_union":
[]
}
]
drop table t1;
CREATE TABLE t1(i INT PRIMARY KEY, b VARCHAR(10), INDEX i_b(b)) CHARSET=latin1;
INSERT INTO t1 VALUES (1, 'ab\n');
INSERT INTO t1 VALUES (2, 'ab\n');
set optimizer_trace=1;
EXPLAIN SELECT * FROM t1 WHERE b='ab\n';
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ref i_b i_b 13 const 2 Using index condition
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.analyzing_range_alternatives')) AS JS from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
{
"range_scan_alternatives":
[
{
"index": "i_b",
"ranges":
["(ab\n) <= (b) <= (ab\n)"],
"rowid_ordered": true,
"using_mrr": false,
"index_only": false,
"rows": 2,
"cost": 0.003808422,
"chosen": true
}
],
"analyzing_roworder_intersect":
{
"cause": "too few roworder scans"
},
"analyzing_index_merge_union":
[]
}
]
drop table t1;
create table t0(a int);
insert into t0 values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
create table one_k (a int);
insert into one_k select A.a + B.a*10 + C.a*100 from t0 A, t0 B, t0 C;
create table t1 (start_date date, end_date date, filler char(100), key(start_date, end_date)) ;
insert into t1 select date_add(now(), interval a day), date_add(now(), interval (a+7) day), 'data' from one_k;
explain format=json select * from t1 force index(start_date) where start_date >= '2019-02-10' and end_date <'2019-04-01';
EXPLAIN
{
"query_block": {
"select_id": 1,
"cost": 1.235690484,
"nested_loop": [
{
"table": {
"table_name": "t1",
"access_type": "range",
"possible_keys": ["start_date"],
"key": "start_date",
"key_length": "8",
"used_key_parts": ["start_date", "end_date"],
"loops": 1,
"rows": 1000,
"cost": 1.235690484,
"filtered": 100,
"index_condition": "t1.start_date >= '2019-02-10' and t1.end_date < '2019-04-01'"
}
}
]
}
}
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.analyzing_range_alternatives')) AS JS from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
{
"range_scan_alternatives":
[
{
"index": "start_date",
"ranges":
["(2019-02-10,NULL) < (start_date,end_date)"],
"rowid_ordered": false,
"using_mrr": false,
"index_only": false,
"rows": 1000,
"cost": 1.235690484,
"chosen": true
}
],
"analyzing_roworder_intersect":
{
"cause": "too few roworder scans"
},
"analyzing_index_merge_union":
[]
}
]
drop table t1, t0, one_k;
#
# MDEV-19776: Assertion `to_len >= 8' failed in convert_to_printable with optimizer trace enabled
#
CREATE TABLE t1 (f VARBINARY(16) NOT NULL, KEY(f));
INSERT INTO t1 VALUES ('a'),('b');
SET optimizer_trace = 'enabled=on';
DELETE FROM t1 WHERE f = 'x';
DROP TABLE t1;
#
# Print cost_for_plan and rows_for_plan for join prefix
#
create table t0(a int);
insert into t0 values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
create table one_k (a int, b int, key(b));
insert into one_k select A.a + B.a*10 + C.a*100, A.a + B.a*10 + C.a*100 from t0 A, t0 B, t0 C;
analyze table t0, one_k persistent for all;
Table Op Msg_type Msg_text
test.t0 analyze status Engine-independent statistics collected
test.t0 analyze status OK
test.one_k analyze status Engine-independent statistics collected
test.one_k analyze status Table is already up to date
set @tmp_jcl=@@join_cache_level;
set join_cache_level=0;
set optimizer_trace=1;
# Check cost/row numbers when multiple tables are joined
# (cost_for_plan is the same as best_access_path.cost for single-table SELECTs
# but for joins using condition selectivity it is not as trivial. So,
# now we are printing it)
explain select * from t0 A, one_k B where A.a<5 and B.a<800;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE A ALL NULL NULL NULL NULL 10 Using where
1 SIMPLE B ALL NULL NULL NULL NULL 1000 Using where
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.considered_execution_plans')) AS JS from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
[
{
"plan_prefix": "",
"get_costs_for_tables":
[
{
"best_access_path":
{
"table": "A",
"plan_details":
{
"record_count": 1
},
"considered_access_paths":
[
{
"access_type": "scan",
"rows": 10,
"rows_after_filter": 5,
"rows_out": 5,
"cost": 0.01159965,
"index_only": false,
"chosen": true
}
],
"chosen_access_method":
{
"type": "scan",
"rows_read": 5,
"rows_out": 5,
"cost": 0.01159965,
"uses_join_buffering": false
}
}
},
{
"best_access_path":
{
"table": "B",
"plan_details":
{
"record_count": 1
},
"considered_access_paths":
[
{
"access_type": "scan",
"rows": 1000,
"rows_after_filter": 800,
"rows_out": 800,
"cost": 0.1669214,
"index_only": false,
"chosen": true
}
],
"chosen_access_method":
{
"type": "scan",
"rows_read": 800,
"rows_out": 800,
"cost": 0.1669214,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "A",
"rows_for_plan": 5,
"cost_for_plan": 0.01159965,
"rest_of_plan":
[
{
"plan_prefix": "A",
"get_costs_for_tables":
[
{
"best_access_path":
{
"table": "B",
"plan_details":
{
"record_count": 5
},
"considered_access_paths":
[
{
"access_type": "scan",
"rows": 1000,
"rows_after_filter": 800,
"rows_out": 800,
"cost": 0.8329686,
"index_only": false,
"chosen": true
}
],
"chosen_access_method":
{
"type": "scan",
"rows_read": 800,
"rows_out": 800,
"cost": 0.8329686,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "A",
"table": "B",
"rows_for_plan": 4000,
"cost_for_plan": 0.84456825
}
]
},
{
"plan_prefix": "",
"table": "B",
"rows_for_plan": 800,
"cost_for_plan": 0.1669214,
"rest_of_plan":
[
{
"plan_prefix": "B",
"get_costs_for_tables":
[
{
"best_access_path":
{
"table": "A",
"plan_details":
{
"record_count": 800
},
"considered_access_paths":
[
{
"access_type": "scan",
"rows": 10,
"rows_after_filter": 5,
"rows_out": 5,
"cost": 9.27972,
"index_only": false,
"chosen": true
}
],
"chosen_access_method":
{
"type": "scan",
"rows_read": 5,
"rows_out": 5,
"cost": 9.27972,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "B",
"table": "A",
"rows_for_plan": 4000,
"cost_for_plan": 9.4466414,
"pruned_by_cost": true,
"current_cost": 9.4466414,
"best_cost": 0.84456825
}
]
}
]
]
set join_cache_level=@tmp_jcl;
# This shows post-join selectivity
explain select * from t0 A, one_k B where A.a=B.b and B.a<800;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE A ALL NULL NULL NULL NULL 10 Using where
1 SIMPLE B ref b b 5 test.A.a 1 Using where
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.considered_execution_plans')) AS JS from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
[
{
"plan_prefix": "",
"get_costs_for_tables":
[
{
"best_access_path":
{
"table": "A",
"plan_details":
{
"record_count": 1
},
"considered_access_paths":
[
{
"access_type": "scan",
"rows": 10,
"rows_after_filter": 10,
"rows_out": 10,
"cost": 0.01159965,
"index_only": false,
"chosen": true
}
],
"chosen_access_method":
{
"type": "scan",
"rows_read": 10,
"rows_out": 10,
"cost": 0.01159965,
"uses_join_buffering": false
}
}
},
{
"best_access_path":
{
"table": "B",
"plan_details":
{
"record_count": 1
},
"considered_access_paths":
[
{
"access_type": "scan",
"rows": 1000,
"rows_after_filter": 800,
"rows_out": 800,
"cost": 0.1669214,
"index_only": false,
"chosen": true
}
],
"chosen_access_method":
{
"type": "scan",
"rows_read": 800,
"rows_out": 800,
"cost": 0.1669214,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "A",
"rows_for_plan": 10,
"cost_for_plan": 0.01159965,
"rest_of_plan":
[
{
"plan_prefix": "A",
"get_costs_for_tables":
[
{
"best_access_path":
{
"table": "B",
"plan_details":
{
"record_count": 10
},
"considered_access_paths":
[
{
"access_type": "ref",
"index": "b",
"used_range_estimates": false,
"reason": "not available",
"rows": 1,
"cost": 0.01901531,
"chosen": true
},
{
"type": "scan",
"chosen": false,
"cause": "cost"
}
],
"chosen_access_method":
{
"type": "ref",
"index": "b",
"rows_read": 1,
"rows_out": 1,
"cost": 0.01901531,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "A",
"table": "B",
"rows_for_plan": 10,
"cost_for_plan": 0.03061496,
"pushdown_cond_selectivity": 0.8,
"filtered": 80,
"rows_out": 0.8,
"selectivity": 0.8,
"estimated_join_cardinality": 8
}
]
},
{
"plan_prefix": "",
"table": "B",
"rows_for_plan": 800,
"cost_for_plan": 0.1669214,
"pruned_by_cost": true,
"current_cost": 0.1669214,
"best_cost": 0.03061496
}
]
]
drop table t0, one_k;
#
# Assertion `to_len >= 8' failed in convert_to_printable
#
CREATE TABLE t1 ( a blob, KEY (a(255)));
insert into t1 values ('foo'), ('bar');
EXPLAIN SELECT * FROM t1 WHERE a= REPEAT('a', 0);
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ref a a 258 const 1 Using where
SELECT * FROM t1 WHERE a= REPEAT('a', 0);
a
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.analyzing_range_alternatives')) AS JS from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
{
"range_scan_alternatives":
[
{
"index": "a",
"ranges":
["() <= (a) <= ()"],
"rowid_ordered": false,
"using_mrr": false,
"index_only": false,
"rows": 1,
"cost": 0.002574553,
"chosen": true
}
],
"analyzing_roworder_intersect":
{
"cause": "too few roworder scans"
},
"analyzing_index_merge_union":
[]
}
]
DROP TABLE t1;
#
# Test for Semi-Join table pullout element
#
create table t1 (a int primary key, b int);
insert into t1 (a) values (1),(2),(3),(4),(5);
create table t2 (a int primary key, b int);
insert into t2 (a) values (1),(2),(3),(4),(5);
create table t3 (a int);
insert into t3 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10);
explain
select * from t3 where (a,a) in (select t1.a, t2.a from t1, t2 where t1.b=t2.b);
id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY t1 ALL PRIMARY NULL NULL NULL 5
1 PRIMARY t2 eq_ref PRIMARY PRIMARY 4 test.t1.a 1 Using where
1 PRIMARY t3 ALL NULL NULL NULL NULL 10 Using where; Using join buffer (flat, BNL join)
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.semijoin_table_pullout')) from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JSON_DETAILED(JSON_EXTRACT(trace, '$**.semijoin_table_pullout'))
[
{
"pulled_out_tables":
[
"t2",
"t1"
]
}
]
drop table t1,t2,t3;
#
# MDEV-22401: Optimizer trace: multi-component range is not printed correctly
#
create table t1 (kp1 int, kp2 int, key(kp1, kp2));
insert into t1 values (1,1),(1,5),(5,1),(5,5);
set optimizer_trace=1;
select * from t1 force index(kp1) where (kp1=2 and kp2 >=4);
kp1 kp2
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.range_scan_alternatives')) AS JS from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
[
{
"index": "kp1",
"ranges":
["(2,4) <= (kp1,kp2) <= (2)"],
"rowid_ordered": false,
"using_mrr": false,
"index_only": true,
"rows": 1,
"cost": 0.001478954,
"chosen": true
}
]
]
drop table t1;
#
# MDEV-21626: Optimizer misses the details about the picked join order
#
CREATE TABLE t1(a INT, b INT, key(a));
INSERT INTO t1 SELECT seq, seq from seq_1_to_10;
CREATE TABLE t2(a INT, b INT, key(a));
INSERT INTO t2 SELECT seq, seq from seq_1_to_100;
SET OPTIMIZER_TRACE=1;
EXPLAIN SELECT * FROM t1, t2 WHERE t1.a=t2.a ORDER BY t2.b;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ALL a NULL NULL NULL 10 Using where; Using temporary; Using filesort
1 SIMPLE t2 ref a a 5 test.t1.a 1
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.considered_execution_plans')) AS JS from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
[
{
"plan_prefix": "",
"get_costs_for_tables":
[
{
"best_access_path":
{
"table": "t1",
"plan_details":
{
"record_count": 1
},
"considered_access_paths":
[
{
"access_type": "scan",
"rows": 10,
"rows_after_filter": 10,
"rows_out": 10,
"cost": 0.01159965,
"index_only": false,
"chosen": true
}
],
"chosen_access_method":
{
"type": "scan",
"rows_read": 10,
"rows_out": 10,
"cost": 0.01159965,
"uses_join_buffering": false
}
}
},
{
"best_access_path":
{
"table": "t2",
"plan_details":
{
"record_count": 1
},
"considered_access_paths":
[
{
"access_type": "scan",
"rows": 100,
"rows_after_filter": 100,
"rows_out": 100,
"cost": 0.0256761,
"index_only": false,
"chosen": true,
"use_tmp_table": true
}
],
"chosen_access_method":
{
"type": "scan",
"rows_read": 100,
"rows_out": 100,
"cost": 0.0256761,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t1",
"rows_for_plan": 10,
"cost_for_plan": 0.01159965,
"rest_of_plan":
[
{
"plan_prefix": "t1",
"get_costs_for_tables":
[
{
"best_access_path":
{
"table": "t2",
"plan_details":
{
"record_count": 10
},
"considered_access_paths":
[
{
"access_type": "ref",
"index": "a",
"used_range_estimates": false,
"reason": "not available",
"rows": 1,
"cost": 0.01840091,
"chosen": true
},
{
"type": "scan",
"chosen": false,
"cause": "cost"
}
],
"chosen_access_method":
{
"type": "ref",
"index": "a",
"rows_read": 1,
"rows_out": 1,
"cost": 0.01840091,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "t1",
"table": "t2",
"rows_for_plan": 10,
"cost_for_plan": 0.03000056,
"cost_for_sorting": 0.006368384
}
]
},
{
"plan_prefix": "",
"table": "t2",
"rows_for_plan": 100,
"cost_for_plan": 0.0256761,
"rest_of_plan":
[
{
"plan_prefix": "t2",
"get_costs_for_tables":
[
{
"best_access_path":
{
"table": "t1",
"plan_details":
{
"record_count": 100
},
"considered_access_paths":
[
{
"access_type": "ref",
"index": "a",
"used_range_estimates": false,
"reason": "not available",
"rows": 1,
"cost": 0.1821659,
"chosen": true
},
{
"access_type": "scan_with_join_cache",
"rows": 10,
"rows_after_filter": 10,
"rows_out": 1,
"cost": 0.11055225,
"cost_without_join_buffer": 1.159965,
"index_only": false,
"chosen": true
}
],
"chosen_access_method":
{
"type": "scan",
"rows_read": 10,
"rows_out": 1,
"cost": 0.11055225,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t2",
"table": "t1",
"rows_for_plan": 100,
"cost_for_plan": 0.13622835,
"pruned_by_cost": true,
"current_cost": 0.13622835,
"best_cost": 0.036368944
}
]
}
]
]
DROP TABLE t1,t2;
#
# MDEV-22665: Print ranges in the optimizer trace created for non-indexed columns when
# optimizer_use_condition_selectivity >2
#
CREATE TABLE t1(a INT, b INT);
INSERT INTO t1 SELECT seq, seq from seq_1_to_100;
SET optimizer_trace=1;
ANALYZE TABLE t1 PERSISTENT FOR ALL;
Table Op Msg_type Msg_text
test.t1 analyze status Engine-independent statistics collected
test.t1 analyze status OK
EXPLAIN EXTENDED SELECT * from t1 WHERE a between 1 and 5 and b <= 5;
id select_type table type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 ALL NULL NULL NULL NULL 100 0.25 Using where
Warnings:
Note 1003 select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b` from `test`.`t1` where `test`.`t1`.`a` between 1 and 5 and `test`.`t1`.`b` <= 5
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.selectivity_for_columns')) AS JS from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
[
{
"column_name": "a",
"ranges":
["1 <= a <= 5"],
"selectivity_from_histogram": 0.05
},
{
"column_name": "b",
"ranges":
["NULL < b <= 5"],
"selectivity_from_histogram": 0.05
}
]
]
EXPLAIN EXTENDED SELECT * from t1 WHERE a != 5;
id select_type table type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 ALL NULL NULL NULL NULL 100 99.00 Using where
Warnings:
Note 1003 select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b` from `test`.`t1` where `test`.`t1`.`a` <> 5
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.selectivity_for_columns')) AS JS from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
[
{
"column_name": "a",
"ranges":
[
"NULL < a < 5",
"5 < a"
],
"selectivity_from_histogram": 0.99
}
]
]
EXPLAIN EXTENDED SELECT * from t1 WHERE b >= 10 and b < 25;
id select_type table type possible_keys key key_len ref rows filtered Extra
1 SIMPLE t1 ALL NULL NULL NULL NULL 100 15.00 Using where
Warnings:
Note 1003 select `test`.`t1`.`a` AS `a`,`test`.`t1`.`b` AS `b` from `test`.`t1` where `test`.`t1`.`b` >= 10 and `test`.`t1`.`b` < 25
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.selectivity_for_columns')) AS JS from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
[
{
"column_name": "b",
"ranges":
["10 <= b < 25"],
"selectivity_from_histogram": 0.15
}
]
]
drop table t1;
#
# MDEV-22910:SIGSEGV in Opt_trace_context::is_started & SIGSEGV in Json_writer::add_table_name
# (on optimized builds)
#
CREATE TABLE t1( a INT, b INT, PRIMARY KEY( a ) );
insert t1 values (2,3);
SELECT sum(b), row_number() OVER (order by b) FROM t1 WHERE a = 101;
sum(b) row_number() OVER (order by b)
NULL 1
UPDATE t1 SET b=10 WHERE a=1;
SELECT JSON_DETAILED(JSON_EXTRACT(trace, '$**.range_scan_alternatives')) AS JS from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
JS
[
[
{
"index": "PRIMARY",
"ranges":
["(1) <= (a) <= (1)"],
"rowid_ordered": true,
"using_mrr": false,
"index_only": false,
"rows": 1,
"cost": 0.002483968,
"chosen": true
}
]
]
DROP TABLE t1;
set optimizer_trace='enabled=off';
#
# MDEV-24975 Server consumes extra 4G memory upon querying INFORMATION_SCHEMA.OPTIIMIZER_TRACE
#
set max_session_mem_used=1024*1024*1024;
select count(*) from information_schema.optimizer_trace;
select * from information_schema.optimizer_trace;
set max_session_mem_used=default;
#
# MDEV-22380 Assertion `name.length == strlen(name.str)' failed in Item::print_item_w_name on SELECT w/ optimizer_trace enabled
#
SET optimizer_trace="enabled=on";
SELECT 'a\0' LIMIT 0;
a\x00
SELECT query, trace FROM INFORMATION_SCHEMA.OPTIMIZER_TRACE;
query trace
SELECT 'a\0' LIMIT 0 {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"expanded_query": "select 'a\0' AS `a\x00` limit 0"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": []
}
}
]
}
SET optimizer_trace=DEFAULT;
#
# MDEV-27238: Assertion `got_name == named_item_expected()' failed in Json_writer::on_start_object
#
CREATE TABLE t1 (a INT KEY,b INT,KEY(b)) ENGINE=MEMORY;
SET optimizer_trace=1;
INSERT INTO t1 VALUES (0,0);
SELECT a FROM t1 WHERE (a,b) in (SELECT @c,@d);
a
DROP TABLE t1;
#
# MDEV-30964: MAX_SEL_ARG memory exhaustion is not visible in the optimizer trace
#
create table t1 (
c1 int,
c2 int,
c3 int,
c4 int,
c5 int,
c6 int,
c7 int,
c8 int,
key(c1,c2,c3,c4,c5,c6,c7,c8)
);
insert into t1 () values (),(),();
explain select *
from t1
where
(c1 in (1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16) and c2=1) and
c3 in (1,2,3,4,5,6,7,8,9,10) and
c4 in (1,2,3,4,5,6,7,8,9,10) and
c5 in (1,2,3,4,5,6,7,8,9,10) and
c6 in (1,2,3,4);
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 index c1 c1 40 NULL 3 Using where; Using index
select
json_detailed(json_extract(trace, '$**.setup_range_conditions'))
from
information_schema.optimizer_trace;
json_detailed(json_extract(trace, '$**.setup_range_conditions'))
[
[
{
"enforce_sel_arg_weight_limit":
{
"index": "c1",
"old_weight": 74806,
"new_weight": 1776
}
},
{
"sel_arg_alloc_limit_hit":
{
"alloced_sel_args": 16001
}
}
]
]
drop table t1;
#
# MDEV-31085: multi-update using view with optimizer trace enabled
#
SET SESSION optimizer_trace = 'enabled=on';
CREATE TABLE t (a int, b int);
CREATE VIEW v AS SELECT 1 AS c UNION SELECT 2 AS c;
INSERT INTO t VALUES (0,4),(5,6);
UPDATE t, v SET t.b = t.a, t.a = v.c WHERE v.c < t.a;
SELECT * FROM information_schema.optimizer_trace;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
UPDATE t, v SET t.b = t.a, t.a = v.c WHERE v.c < t.a {
"steps": [
{
"view": {
"table": "v",
"select_id": 2,
"algorithm": "materialized"
}
},
{
"join_preparation": {
"select_id": 2,
"steps": [
{
"expanded_query": "/* select#2 */ select 1 AS c"
}
]
}
},
{
"join_preparation": {
"select_id": 3,
"steps": [
{
"expanded_query": "/* select#3 */ select 2 AS c"
}
]
}
},
{
"join_preparation": {
"select_id": "fake",
"steps": [
{
"expanded_query": "select c AS c from dual"
}
]
}
},
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"expanded_query": "/* select#1 */ update t join v set t.b = t.a,t.a = v.c where v.c < t.a"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"condition_processing": {
"condition": "WHERE",
"original_condition": "v.c < t.a",
"steps": [
{
"transformation": "equality_propagation",
"resulting_condition": "v.c < t.a"
},
{
"transformation": "constant_propagation",
"resulting_condition": "v.c < t.a"
},
{
"transformation": "trivial_condition_removal",
"resulting_condition": "v.c < t.a"
}
]
}
},
{
"join_optimization": {
"select_id": 2,
"steps": []
}
},
{
"join_optimization": {
"select_id": 3,
"steps": []
}
},
{
"ref_optimizer_key_uses": []
},
{
"rows_estimation": [
{
"table": "t",
"table_scan": {
"rows": 2,
"read_cost": 0.01028441,
"read_and_compare_cost": 0.01034841
}
},
{
"table": "<derived2>",
"table_scan": {
"rows": 2,
"read_cost": 0.010020701,
"read_and_compare_cost": 0.010089369
}
}
]
},
{
"table_dependencies": [
{
"table": "t",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
},
{
"table": "<derived2>",
"row_may_be_null": false,
"map_bit": 1,
"depends_on_map_bits": []
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 2,
"rows_after_filter": 2,
"rows_out": 2,
"cost": 0.01034841,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 2,
"rows_out": 2,
"cost": 0.01034841,
"uses_join_buffering": false
}
}
},
{
"best_access_path": {
"table": "<derived2>",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 2,
"rows_after_filter": 2,
"rows_out": 2,
"cost": 0.010089369,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 2,
"rows_out": 2,
"cost": 0.010089369,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t",
"rows_for_plan": 2,
"cost_for_plan": 0.01034841,
"rest_of_plan": [
{
"plan_prefix": "t",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "<derived2>",
"plan_details": {
"record_count": 2
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 2,
"rows_after_filter": 2,
"rows_out": 2,
"cost": 0.010582565,
"cost_without_join_buffer": 0.020178738,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 2,
"rows_out": 2,
"cost": 0.010582565,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t",
"table": "<derived2>",
"rows_for_plan": 4,
"cost_for_plan": 0.020930975
}
]
},
{
"plan_prefix": "",
"table": "<derived2>",
"rows_for_plan": 2,
"cost_for_plan": 0.010089369,
"rest_of_plan": [
{
"plan_prefix": "<derived2>",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t",
"plan_details": {
"record_count": 2
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 2,
"rows_after_filter": 2,
"rows_out": 2,
"cost": 0.010841606,
"cost_without_join_buffer": 0.02069682,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 2,
"rows_out": 2,
"cost": 0.010841606,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "<derived2>",
"table": "t",
"rows_for_plan": 4,
"cost_for_plan": 0.020930975,
"pruned_by_cost": true,
"current_cost": 0.020930975,
"best_cost": 0.020930975
}
]
}
]
},
{
"best_join_order": ["t", "<derived2>"],
"rows": 4,
"cost": 0.020930975
},
{
"substitute_best_equal": {
"condition": "WHERE",
"resulting_condition": "v.c < t.a"
}
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [],
"attached_conditions_summary": [
{
"table": "t",
"attached_condition": null
},
{
"table": "<derived2>",
"attached_condition": "v.c < t.a"
}
]
}
},
{
"make_join_readinfo": []
}
]
}
},
{
"join_optimization": {
"select_id": "fake",
"steps": [
{
"rows_estimation": [
{
"table": "union",
"table_scan": {
"rows": 2,
"read_cost": 0.010020701,
"read_and_compare_cost": 0.010084701
}
}
]
},
{
"table_dependencies": [
{
"table": "union",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "union",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 2,
"rows_after_filter": 2,
"rows_out": 2,
"cost": 0.010084701,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 2,
"rows_out": 2,
"cost": 0.010084701,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "union",
"rows_for_plan": 2,
"cost_for_plan": 0.010084701
}
]
},
{
"best_join_order": ["union"],
"rows": 2,
"cost": 0.010084701
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [],
"attached_conditions_summary": [
{
"table": "union",
"attached_condition": null
}
]
}
},
{
"make_join_readinfo": []
}
]
}
}
]
} 0 0
SELECT * FROM t;
a b
0 4
1 5
SET optimizer_trace=DEFAULT;
DROP VIEW v;
DROP TABLE t;
#
# MDEV-26301: Split optimization improvements: Optimizer Trace coverage
#
create table t1(a int, b int);
insert into t1 select seq,seq from seq_1_to_5;
create table t2(a int, b int, key(a));
insert into t2
select A.seq,B.seq from seq_1_to_25 A, seq_1_to_2 B;
create table t3(a int, b int, key(a));
insert into t3
select A.seq,B.seq from seq_1_to_5 A, seq_1_to_3 B;
analyze table t1,t2,t3 persistent for all;
Table Op Msg_type Msg_text
test.t1 analyze status Engine-independent statistics collected
test.t1 analyze status OK
test.t2 analyze status Engine-independent statistics collected
test.t2 analyze status Table is already up to date
test.t3 analyze status Engine-independent statistics collected
test.t3 analyze status Table is already up to date
create table t10 (
grp_id int,
col1 int,
key(grp_id)
);
insert into t10
select
A.seq,
B.seq
from
seq_1_to_100 A,
seq_1_to_100 B;
create table t11 (
col1 int,
col2 int
);
insert into t11
select A.seq, A.seq from seq_1_to_10 A;
analyze table t10,t11 persistent for all;
Table Op Msg_type Msg_text
test.t10 analyze status Engine-independent statistics collected
test.t10 analyze status Table is already up to date
test.t11 analyze status Engine-independent statistics collected
test.t11 analyze status OK
set optimizer_trace=1;
explain
select * from
(
(t1 left join t2 on t2.a=t1.b)
left join t3 on t3.a=t1.b
) left join (select grp_id, count(*)
from t10 left join t11 on t11.col1=t10.col1
group by grp_id) T on T.grp_id=t1.b;
id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY t1 ALL NULL NULL NULL NULL 5
1 PRIMARY t2 ref a a 5 test.t1.b 2 Using where
1 PRIMARY t3 ref a a 5 test.t1.b 3 Using where
1 PRIMARY <derived2> ref key0 key0 5 test.t1.b 10 Using where
2 LATERAL DERIVED t10 ref grp_id grp_id 5 test.t1.b 100
2 LATERAL DERIVED t11 ALL NULL NULL NULL NULL 10 Using where; Using join buffer (flat, BNL join)
select json_detailed(json_extract(trace, '$**.check_split_materialized')) as JS
from information_schema.optimizer_trace;
JS
[
{
"split_candidates":
["t10.grp_id"]
}
]
select
json_detailed(
json_remove(
json_extract(trace, '$**.choose_best_splitting')
, '$[0].split_plan_search[0]'
)
) as JS
from information_schema.optimizer_trace;
JS
[
{
"considered_keys":
[
{
"table_name": "t10",
"index": "grp_id",
"rec_per_key": 100,
"param_tables": 1
}
],
"refills": 5,
"spl_pd_boundary": 8,
"split_plan_search":
[],
"split_materialized":
{
"table": "t10",
"key": "grp_id",
"org_cost": 1.159965,
"postjoin_cost": 4.020888502,
"one_splitting_cost": 5.180853502,
"unsplit_postjoin_cost": 32.78652054,
"unsplit_cost": 148.7830205,
"rows": 100,
"refills": 5,
"total_splitting_cost": 25.90426751,
"chosen": true
}
},
{
"considered_keys":
[
{
"table_name": "t10",
"index": "grp_id",
"rec_per_key": 100,
"param_tables": 1
}
],
"refills": 5,
"spl_pd_boundary": 2,
"cached_plan_found": 1,
"split_materialized":
{
"one_splitting_cost": 5.180853502,
"total_splitting_cost": 0,
"rows": 100
}
},
{
"considered_keys":
[
{
"table_name": "t10",
"index": "grp_id",
"rec_per_key": 100,
"param_tables": 1
}
],
"refills": 5,
"spl_pd_boundary": 2,
"cached_plan_found": 1,
"split_materialized":
{
"one_splitting_cost": 5.180853502,
"total_splitting_cost": 0,
"rows": 100
}
},
{
"considered_keys":
[
{
"table_name": "t10",
"index": "grp_id",
"rec_per_key": 100,
"param_tables": 1
}
],
"refills": 5,
"spl_pd_boundary": 4,
"cached_plan_found": 1,
"split_materialized":
{
"one_splitting_cost": 5.180853502,
"total_splitting_cost": 0,
"rows": 100
}
},
{
"considered_keys":
[
{
"table_name": "t10",
"index": "grp_id",
"rec_per_key": 100,
"param_tables": 1
}
],
"refills": 5,
"spl_pd_boundary": 4,
"cached_plan_found": 1,
"split_materialized":
{
"one_splitting_cost": 5.180853502,
"total_splitting_cost": 0,
"rows": 100
}
}
]
drop table t1,t2,t3,t10,t11;
set optimizer_trace=DEFAULT;
#
# MDEV-29179 Condition pushdown from HAVING into WHERE is not shown in optimizer trace
#
CREATE TABLE t1 (a INT, b VARCHAR(1), KEY (a), KEY(b,a)) ENGINE=MEMORY;
INSERT INTO t1 VALUES (4,'n'),(1,'h'),(NULL,'w');
SET optimizer_trace= 'enabled=on';
SELECT b, a FROM t1 WHERE b <> 'p' OR a = 4 GROUP BY b, a HAVING a <= 7;
b a
h 1
n 4
SELECT json_detailed(json_extract(trace, '$**.steps[*].join_optimization.steps[*].condition_pushdown_from_having') ) exp1, JSON_VALID(trace) exp2 FROM information_schema.optimizer_trace;
exp1 exp2
[
{
"conds": "(t1.b <> 'p' or multiple equal(4, t1.a)) and t1.a <= 7",
"having": null
}
] 1
DROP TABLE t1;
#
# End of 10.4 tests
#
set optimizer_trace='enabled=on';
#
# Test many rows to see output of big cost numbers
#
select count(*) from seq_1_to_10000000;
count(*)
10000000
select * from INFORMATION_SCHEMA.OPTIMIZER_TRACE;
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
select count(*) from seq_1_to_10000000 {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"expanded_query": "select count(0) AS `count(*)` from seq_1_to_10000000"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"rows_estimation": [
{
"table": "seq_1_to_10000000",
"table_scan": {
"rows": 10000000,
"read_cost": 124.7880673,
"read_and_compare_cost": 444.7880673
}
}
]
},
{
"table_dependencies": [
{
"table": "seq_1_to_10000000",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "seq_1_to_10000000",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 10000000,
"rows_after_filter": 10000000,
"rows_out": 10000000,
"cost": 444.7880673,
"index_only": true,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 10000000,
"rows_out": 10000000,
"cost": 444.7880673,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "seq_1_to_10000000",
"rows_for_plan": 10000000,
"cost_for_plan": 444.7880673
}
]
},
{
"best_join_order": ["seq_1_to_10000000"],
"rows": 10000000,
"cost": 444.7880673
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [],
"attached_conditions_summary": [
{
"table": "seq_1_to_10000000",
"attached_condition": null
}
]
}
},
{
"make_join_readinfo": []
}
]
}
}
]
} 0 0
#
# MDEV-22891: Optimizer trace: const tables are not clearly visible
#
create table t0(a int primary key);
insert into t0 values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
create table t1 (pk int primary key, a int);
insert into t1 select a,a from t0;
create table t2 (pk int primary key, a int);
insert into t2 select a,a from t0;
create table t3 (pk int primary key, a int);
insert into t3 select a,a from t0;
explain
select * from t1 left join (t2 join t3 on t3.pk=1000) on t2.a=t1.a and t2.pk is null;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t3 const PRIMARY NULL NULL NULL 1 Impossible ON condition
1 SIMPLE t2 const PRIMARY NULL NULL NULL 0 Impossible ON condition
1 SIMPLE t1 ALL NULL NULL NULL NULL 10
select JSON_DETAILED(JSON_EXTRACT(trace, '$**.mark_join_nest_as_const')) as jd
from information_schema.optimizer_trace;
jd
[
{
"members":
[
"t3",
"t2"
]
}
]
drop table t0, t1, t2, t3;
#
# MDEV-23767: IN-to-subquery conversion is not visible in optimizer trace
#
create table t0 (a int);
INSERT INTO t0 VALUES (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
set @tmp=@@in_predicate_conversion_threshold;
set in_predicate_conversion_threshold=3;
explain select * from t0 where a in (1,2,3,4,5,6);
id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY t0 ALL NULL NULL NULL NULL 10 Using where
1 PRIMARY <derived3> eq_ref distinct_key distinct_key 4 test.t0.a 1
3 DERIVED NULL NULL NULL NULL NULL NULL NULL No tables used
select json_detailed(json_extract(trace, '$**.in_to_subquery_conversion')) as jd
from information_schema.optimizer_trace;
jd
[
{
"item": "t0.a in (1,2,3,4,5,6)",
"conversion":
[
{
"join_preparation":
{
"select_id": 2,
"steps":
[
{
"derived":
{
"table": "tvc_0",
"select_id": 3,
"algorithm": "materialized"
}
},
{
"transformation":
{
"select_id": 2,
"from": "IN (SELECT)",
"to": "semijoin",
"chosen": true
}
},
{
"expanded_query": "/* select#2 */ select tvc_0._col_1 from (values (1),(2),(3),(4),(5),(6)) tvc_0"
}
]
}
}
]
}
]
explain select * from t0 where a in (1,2,3,4,5,a+1);
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t0 ALL NULL NULL NULL NULL 10 Using where
select json_detailed(json_extract(trace, '$**.in_to_subquery_conversion')) as jd
from information_schema.optimizer_trace;
jd
[
{
"item": "t0.a in (1,2,3,4,5,t0.a + 1)",
"done": false,
"reason": "non-constant element in the IN-list"
}
]
explain select * from t0 where a in ('1','2','3','4','5','6');
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t0 ALL NULL NULL NULL NULL 10 Using where
select json_detailed(json_extract(trace, '$**.in_to_subquery_conversion')) as jd
from information_schema.optimizer_trace;
jd
[
{
"item": "t0.a in ('1','2','3','4','5','6')",
"done": false,
"reason": "type mismatch"
}
]
set in_predicate_conversion_threshold=@tmp;
drop table t0;
#
# MDEV-29298: INSERT ... SELECT Does not produce an optimizer trace
#
create table t1 (a int, b int);
create table t2 (a int, b int);
insert into t1 values (1,1), (2,2), (3,3), (4,4), (5,5);
set optimizer_trace=1;
insert into t2 select * from t1 where a<= b and a>4;
select QUERY, LENGTH(trace)>1 from information_schema.optimizer_trace;
QUERY LENGTH(trace)>1
insert into t2 select * from t1 where a<= b and a>4 1
drop table t1, t2;
#
# MDEV-34305 Redundant truncation errors/warnings with optimizer_trace enabled
#
SET @@optimizer_trace='enabled=on';
CREATE TABLE t1 (
a CHAR(2) NOT NULL PRIMARY KEY,
b VARCHAR(20) NOT NULL,
KEY (b)
) CHARSET=utf8mb4;
CREATE TABLE t2 (
a CHAR(2) NOT NULL PRIMARY KEY,
b VARCHAR(20) NOT NULL,
KEY (b)
) CHARSET=utf8mb4;
INSERT INTO t1 VALUES
('AB','MySQLAB'),
('JA','Sun Microsystems'),
('MS','Microsoft'),
('IB','IBM- Inc.'),
('GO','Google Inc.');
INSERT IGNORE INTO t2 VALUES
('AB','Sweden'),
('JA','USA'),
('MS','United States'),
('IB','North America'),
('GO','South America');
UPDATE t1,t2 SET t1.b=UPPER(t1.b) WHERE t1.b LIKE 'Unknown%';
DROP TABLE t1, t2;
#
# End of 10.5 tests
#
#
# MDEV-23677: Optimizer trace ... (test coverage)
#
create table t1(a int, b int, c int, primary key (a,b,c));
insert into t1 values (0,0,0),(1,1,1),(2,2,2),(3,3,3),(4,4,4);
create table t2 (a int, b int);
insert into t2 values (1,1),(2,2);
create table t3 (a int, b int, c int);
insert into t3 values (0,0,0),(1,1,1),(2,2,2),(3,3,3),(4,4,4);
explain select * from t2,t1,t3 where t2.b= t1.b and t1.a=t3.a;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t3 ALL NULL NULL NULL NULL 5 Using where
1 SIMPLE t1 ref PRIMARY PRIMARY 4 test.t3.a 1 Using index
1 SIMPLE t2 ALL NULL NULL NULL NULL 2 Using where; Using join buffer (flat, BNL join)
set @trace=(select trace from information_schema.optimizer_trace);
set @path= (select json_search(@trace, 'one', 'no predicate for first keypart'));
set @sub_path= substr(@path, 2, locate('.best_access_path', @path)-2);
select @sub_path;
@sub_path
$.steps[1].join_optimization.steps[4].considered_execution_plans[1].rest_of_plan[0].get_costs_for_tables[0]
select
json_detailed(json_extract(
@trace,
concat(@sub_path,'.best_access_path.considered_access_paths[0]')
)) as S;
S
{
"access_type": "ref",
"index": "PRIMARY",
"chosen": false,
"cause": "no predicate for first keypart"
}
drop table t1,t2,t3;
#
# MDEV-23645: Optimizer trace: print conditions after substitute_for_best_equal_field
#
create table t1 (a int, b int, c int);
insert into t1 values (1,1,1),(2,2,2);
create table t2 as select * from t1;
insert into t2 select * from t2;
create table t3 as select * from t2;
insert into t3 select * from t3;
# Check how HAVING is printed
explain
select
a,b, count(*)
from t1
where a=3
group by b,b
having a+b < 10;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ALL NULL NULL NULL NULL 2 Using where; Using temporary; Using filesort
select
json_detailed(json_extract(trace, '$**.substitute_best_equal'))
from
information_schema.optimizer_trace;
json_detailed(json_extract(trace, '$**.substitute_best_equal'))
[
{
"condition": "WHERE",
"resulting_condition": "t1.a = 3"
},
{
"condition": "HAVING",
"resulting_condition": "t1.a + t1.b < 10"
}
]
# Check ON expression
explain
select
*
from t1 left join t2 on t2.a=t1.a and t2.a<3
where
t1.b > 5555;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ALL NULL NULL NULL NULL 2 Using where
1 SIMPLE t2 ALL NULL NULL NULL NULL 4 Using where; Using join buffer (flat, BNL join)
select
json_detailed(json_extract(trace, '$**.substitute_best_equal'))
from
information_schema.optimizer_trace;
json_detailed(json_extract(trace, '$**.substitute_best_equal'))
[
{
"condition": "WHERE",
"resulting_condition": "t1.b > 5555"
},
{
"condition": "ON expr",
"attached_to": "t2",
"resulting_condition": "t2.a = t1.a and t1.a < 3"
}
]
# Check nested ON expression
explain
select
*
from t1 left join (t2,t3) on t2.a=t1.a and t3.a=t2.a and t3.a + t2.a <1000
where
t1.b > 5555;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ALL NULL NULL NULL NULL 2 Using where
1 SIMPLE t2 ALL NULL NULL NULL NULL 4 Using where; Using join buffer (flat, BNL join)
1 SIMPLE t3 ALL NULL NULL NULL NULL 8 Using where; Using join buffer (incremental, BNL join)
select
json_detailed(json_extract(trace, '$**.substitute_best_equal'))
from
information_schema.optimizer_trace;
json_detailed(json_extract(trace, '$**.substitute_best_equal'))
[
{
"condition": "WHERE",
"resulting_condition": "t1.b > 5555"
},
{
"condition": "ON expr",
"attached_to": "t2",
"resulting_condition": "t2.a = t1.a and t3.a = t1.a and t1.a + t1.a < 1000"
}
]
# The next query is test for:
# MDEV-23646: Optimizer trace: optimize_cond() should show ON expression processing
select
json_detailed(json_extract(trace, '$**.condition_processing'))
from
information_schema.optimizer_trace;
json_detailed(json_extract(trace, '$**.condition_processing'))
[
{
"condition": "WHERE",
"original_condition": "t1.b > 5555",
"steps":
[
{
"build_equal_items":
{
"condition": "ON expr",
"attached_to": "t3",
"resulting_condition": "t3.a + t2.a < 1000 and multiple equal(t2.a, t1.a, t3.a)"
}
},
{
"transformation": "equality_propagation",
"resulting_condition": "t1.b > 5555"
},
{
"transformation": "constant_propagation",
"resulting_condition": "t1.b > 5555"
},
{
"transformation": "trivial_condition_removal",
"resulting_condition": "t1.b > 5555"
}
]
}
]
drop table t1,t2,t3;
#
# MDEV-24325: Optimizer trace doesn't cover LATERAL DERIVED
#
create table t1 (a int, b int, index idx_b(b)) engine=myisam charset=latin1;
insert into t1 values
(8,3), (5,7), (1,2), (2,1), (9,7), (7,5), (2,2), (7,3),
(9,3), (8,1), (4,5), (2,3);
create table t2 (a int, b int, c char(127), index idx_a(a)) engine=myisam charset=latin1;
insert into t2 values
(7,10,'x'), (1,20,'a'), (2,23,'b'), (7,18,'z'), (1,30,'c'),
(4,71,'d'), (3,15,'x'), (7,82,'y'), (8,12,'t'), (4,15,'b'),
(11,33,'a'), (10,42,'u'), (4,53,'p'), (10,17,'r'), (2,90,'x'),
(17,10,'s'), (11,20,'v'), (12,23,'y'), (17,18,'a'), (11,30,'d'),
(24,71,'h'), (23,15,'i'), (27,82,'k'), (28,12,'p'), (24,15,'q'),
(31,33,'f'), (30,42,'h'), (40,53,'m'), (30,17,'o'), (21,90,'b'),
(37,10,'e'), (31,20,'g'), (32,23,'f'), (37,18,'n'), (41,30,'l'),
(54,71,'j'), (53,15,'w'), (57,82,'z'), (58,12,'k'), (54,15,'p'),
(61,33,'c'), (60,42,'a'), (62,53,'x'), (67,17,'g'), (64,90,'v');
insert into t2 select a+10, b+10, concat(c,'f') from t2;
analyze table t1,t2;
Table Op Msg_type Msg_text
test.t1 analyze status Engine-independent statistics collected
test.t1 analyze status OK
test.t2 analyze status Engine-independent statistics collected
test.t2 analyze status OK
explain
select t1.a,t.s,t.m
from t1 join
(select a, sum(t2.b) as s, min(t2.c) as m from t2 group by t2.a) t
on t1.a=t.a
where t1.b < 3;
id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY t1 range idx_b idx_b 5 NULL 4 Using index condition; Using where
1 PRIMARY <derived2> ref key0 key0 5 test.t1.a 1
2 LATERAL DERIVED t2 ref idx_a idx_a 5 test.t1.a 1
select
json_detailed(json_extract(trace, '$**.choose_best_splitting'))
from
information_schema.optimizer_trace;
json_detailed(json_extract(trace, '$**.choose_best_splitting'))
[
{
"considered_keys":
[]
},
{
"considered_keys":
[
{
"table_name": "t2",
"index": "idx_a",
"rec_per_key": 1.8367,
"param_tables": 1
}
],
"refills": 4,
"spl_pd_boundary": 2,
"split_plan_search":
[
{
"considered_execution_plans":
[
{
"plan_prefix": "",
"get_costs_for_tables":
[
{
"best_access_path":
{
"table": "t2",
"plan_details":
{
"record_count": 1
},
"considered_access_paths":
[
{
"access_type": "ref",
"index": "idx_a",
"used_range_estimates": false,
"reason": "not available",
"rows": 1.8367,
"cost": 0.002051185,
"chosen": true
},
{
"type": "scan",
"chosen": false,
"cause": "cost"
}
],
"chosen_access_method":
{
"type": "ref",
"index": "idx_a",
"rows_read": 1.8367,
"rows_out": 1.8367,
"cost": 0.002051185,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "t2",
"rows_for_plan": 1.8367,
"cost_for_plan": 0.002051185,
"cost_for_sorting": 0.001155201
}
]
}
],
"split_materialized":
{
"table": "t2",
"key": "idx_a",
"org_cost": 0.002051185,
"postjoin_cost": 0.001135418,
"one_splitting_cost": 0.003186603,
"unsplit_postjoin_cost": 0.036032575,
"unsplit_cost": 0.060625425,
"rows": 1.8367,
"refills": 4,
"total_splitting_cost": 0.012746412,
"chosen": true
}
}
]
drop table t1,t2;
#
# Test table functions.
#
CREATE TABLE t1(id INT, f1 JSON);
INSERT INTO t1 VALUES (1, '{\"1\": 1}'), (2, '{\"1\": 2}'), (3, '{\"1\": 3}'),
(4, '{\"1\": 4}'), (5, '{\"1\": 5}'), (6, '{\"1\": 6}');
SELECT * FROM t1 WHERE id IN
(SELECT id FROM t1 as tt2,
JSON_TABLE(f1, "$" COLUMNS (jf FOR ORDINALITY)) AS tbl);
id f1
1 {"1": 1}
2 {"1": 2}
3 {"1": 3}
4 {"1": 4}
5 {"1": 5}
6 {"1": 6}
select json_detailed(json_extract(trace, '$**.best_join_order'))
from information_schema.OPTIMIZER_TRACE;
json_detailed(json_extract(trace, '$**.best_join_order'))
[
[
"t1",
"<subquery2>"
]
]
DROP TABLE t1;
#
# MDEV-27306: SET STATEMENT optimizer_trace=1 Doesn't save the trace
#
set optimizer_trace=0;
set statement optimizer_trace=1 for select * from seq_1_to_10 where seq<2;
seq
1
# The trace must not be empty:
select left(trace, 100) from information_schema.optimizer_trace;
left(trace, 100)
{
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
set optimizer_trace='enabled=off';
# End of 10.6 tests
#
# MDEV-36461: Remove join_execution nodes and add range_check_for_each_record when appropriate
#
create table t1 (a int, b int);
insert into t1 values (1, 999),(999, 1),(987,987);
create table t2 (a int, b int, index(a),index(b));
insert into t2 select seq, seq from seq_1_to_1000;
create table t3 (a int);
insert into t3 select seq from seq_1_to_2;
set optimizer_trace='enabled=on';
analyze
select
(
select count(*)
from t1, t2
where t2.a<t1.a and t2.b<t1.b and t2.b+t1.a>t3.a
) as SUBQ, a
from t3;
id select_type table type possible_keys key key_len ref rows r_rows filtered r_filtered Extra
1 PRIMARY t3 ALL NULL NULL NULL NULL 2 2.00 100.00 100.00
2 DEPENDENT SUBQUERY t1 ALL NULL NULL NULL NULL 3 3.00 100.00 100.00
2 DEPENDENT SUBQUERY t2 ALL a,b NULL NULL NULL 1000 333.33 100.00 98.60 Range checked for each record (index map: 0x3)
# The trace must contain 6 objects with select_id 2 and
# loop varying from 1..2 for each of the 3 ranges from t1:
set @trace=(select trace from information_schema.optimizer_trace);
set @trace=(select json_extract(@trace, '$**.range-checked-for-each-record'));
set @trace=json_replace(@trace, '$[0].rows_estimation[0].range_analysis','REPLACED');
set @trace=json_replace(@trace, '$[1].rows_estimation[0].range_analysis','REPLACED');
set @trace=json_replace(@trace, '$[2].rows_estimation[0].range_analysis','REPLACED');
set @trace=json_replace(@trace, '$[3].rows_estimation[0].range_analysis','REPLACED');
set @trace=json_replace(@trace, '$[4].rows_estimation[0].range_analysis','REPLACED');
set @trace=json_replace(@trace, '$[5].rows_estimation[0].range_analysis','REPLACED');
select json_detailed(@trace) as TRACE;
TRACE
[
{
"select_id": 2,
"loop": 1,
"rows_estimation":
[
{
"table": "t2",
"range_analysis": "REPLACED"
}
]
},
{
"select_id": 2,
"loop": 1,
"rows_estimation":
[
{
"table": "t2",
"range_analysis": "REPLACED"
}
]
},
{
"select_id": 2,
"loop": 1,
"rows_estimation":
[
{
"table": "t2",
"range_analysis": "REPLACED"
}
]
},
{
"select_id": 2,
"loop": 2,
"rows_estimation":
[
{
"table": "t2",
"range_analysis": "REPLACED"
}
]
},
{
"select_id": 2,
"loop": 2,
"rows_estimation":
[
{
"table": "t2",
"range_analysis": "REPLACED"
}
]
},
{
"select_id": 2,
"loop": 2,
"rows_estimation":
[
{
"table": "t2",
"range_analysis": "REPLACED"
}
]
}
]
# The trace must be empty:
select json_detailed(json_extract(trace, '$**.join_execution'))
from information_schema.optimizer_trace;
json_detailed(json_extract(trace, '$**.join_execution'))
NULL
select
(
select count(*)
from t1, t2
where t2.a+1<t1.a and t2.b+1<t1.b and t2.b+t1.a>t3.a
) as SUBQ, a
from t3;
SUBQ a
985 1
985 2
# The trace must be empty:
select json_detailed(json_extract(trace, '$**.range-checked-for-each-record'))
from information_schema.optimizer_trace;
json_detailed(json_extract(trace, '$**.range-checked-for-each-record'))
NULL
# The trace must be empty:
select json_detailed(json_extract(trace, '$**.join_execution'))
from information_schema.optimizer_trace;
json_detailed(json_extract(trace, '$**.join_execution'))
NULL
set optimizer_trace='enabled=off';
drop table t1,t2,t3;
# End of 10.11 tests
#
# Testing of records_out
#
set @save_optimizer_switch= @@optimizer_switch;
set @save_use_stat_tables= @@use_stat_tables;
set @save_histogram_size= @@histogram_size;
set @save_optimizer_use_condition_selectivity= @@optimizer_use_condition_selectivity;
set optimizer_switch='rowid_filter=on';
set use_stat_tables='preferably';
set histogram_size=127;
create table t1 (a int, b int, c int, key(a),key(b));
insert into t1 select seq, seq*2, seq/10 from seq_1_to_1000;
analyze table t1;
Table Op Msg_type Msg_text
test.t1 analyze status Engine-independent statistics collected
test.t1 analyze status Table is already up to date
explain select * from t1 where a<10 and b between 10 and 50 and c < 10;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range|filter a,b a|b 5|5 NULL 9 (2%) Using index condition; Using where; Using rowid filter
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
explain select * from t1 where a<10 and b between 10 and 50 and c < 10 {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"expanded_query": "select t1.a AS a,t1.b AS b,t1.c AS c from t1 where t1.a < 10 and t1.b between 10 and 50 and t1.c < 10"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"condition_processing": {
"condition": "WHERE",
"original_condition": "t1.a < 10 and t1.b between 10 and 50 and t1.c < 10",
"steps": [
{
"transformation": "equality_propagation",
"resulting_condition": "t1.a < 10 and t1.b between 10 and 50 and t1.c < 10"
},
{
"transformation": "constant_propagation",
"resulting_condition": "t1.a < 10 and t1.b between 10 and 50 and t1.c < 10"
},
{
"transformation": "trivial_condition_removal",
"resulting_condition": "t1.a < 10 and t1.b between 10 and 50 and t1.c < 10"
}
]
}
},
{
"ref_optimizer_key_uses": []
},
{
"rows_estimation": [
{
"table": "t1",
"range_analysis": {
"table_scan": {
"rows": 1000,
"cost": 0.1671618
},
"potential_range_indexes": [
{
"index": "a",
"usable": true,
"key_parts": ["a"]
},
{
"index": "b",
"usable": true,
"key_parts": ["b"]
}
],
"setup_range_conditions": [],
"analyzing_range_alternatives": {
"range_scan_alternatives": [
{
"index": "a",
"ranges": ["(NULL) < (a) < (10)"],
"rowid_ordered": false,
"using_mrr": false,
"index_only": false,
"rows": 9,
"cost": 0.012445505,
"chosen": true
},
{
"index": "b",
"ranges": ["(10) <= (b) <= (50)"],
"rowid_ordered": false,
"using_mrr": false,
"index_only": false,
"rows": 21,
"cost": 0.027251933,
"chosen": false,
"cause": "cost"
}
],
"analyzing_roworder_intersect": {
"cause": "too few roworder scans"
},
"analyzing_index_merge_union": []
},
"group_index_range": {
"chosen": false,
"cause": "no group by or distinct"
},
"chosen_range_access_summary": {
"range_access_plan": {
"type": "range_scan",
"index": "a",
"rows": 9,
"ranges": ["(NULL) < (a) < (10)"]
},
"rows_for_plan": 9,
"cost_for_plan": 0.012445505,
"chosen": true
}
}
},
{
"table": "t1",
"rowid_filters": [
{
"key": "a",
"build_cost": 0.001846537,
"rows": 9
},
{
"key": "b",
"build_cost": 0.003322634,
"rows": 21
}
]
},
{
"selectivity_for_indexes": [
{
"index_name": "a",
"selectivity_from_index": 0.009
},
{
"index_name": "b",
"selectivity_from_index": 0.021
}
],
"selectivity_for_columns": [
{
"column_name": "c",
"ranges": ["NULL < c < 10"],
"selectivity_from_histogram": 0.094
}
],
"cond_selectivity": 0.000017766
}
]
},
{
"table_dependencies": [
{
"table": "t1",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"filter": {
"rowid_filter_index": "b",
"index_only_cost": 0.001605807,
"filter_startup_cost": 0.003322634,
"find_key_and_filter_lookup_cost": 6.695354e-4,
"filter_selectivity": 0.021,
"original_rows": 9,
"new_rows": 0.189,
"original_access_cost": 0.011607363,
"with_filter_access_cost": 0.002485375,
"original_found_rows_cost": 0.010001556,
"with_filter_found_rows_cost": 2.100327e-4,
"org_cost": 0.011895363,
"filter_cost": 0.005814057,
"filter_used": true
},
"access_type": "range",
"range_index": "a",
"rows": 9,
"rows_after_filter": 0.189,
"rows_out": 0.017766,
"cost": 0.006364199,
"chosen": true
}
],
"chosen_access_method": {
"type": "range",
"index": "a",
"rows_read": 0.189,
"rows_out": 0.017766,
"cost": 0.006364199,
"uses_join_buffering": false,
"rowid_filter_index": "b"
}
}
}
]
},
{
"plan_prefix": "",
"table": "t1",
"rows_for_plan": 0.017766,
"cost_for_plan": 0.006364199,
"pushdown_cond_selectivity": 0.094,
"filtered": 0.1974,
"rows_out": 0.017766
}
]
},
{
"best_join_order": ["t1"],
"rows": 0.017766,
"cost": 0.006364199
},
{
"table": "t1",
"range_analysis": {
"potential_range_indexes": [
{
"index": "a",
"usable": false,
"cause": "not applicable"
},
{
"index": "b",
"usable": true,
"key_parts": ["b"]
}
],
"setup_range_conditions": [],
"analyzing_range_alternatives": {
"range_scan_alternatives": [
{
"index": "b",
"ranges": ["(10) <= (b) <= (50)"],
"rowid_ordered": false,
"using_mrr": false,
"index_only": true,
"rows": 21,
"cost": 0.004244354,
"chosen": true
}
]
},
"chosen_range_access_summary": {
"range_access_plan": {
"type": "range_scan",
"index": "b",
"rows": 21,
"ranges": ["(10) <= (b) <= (50)"]
},
"rows_for_plan": 21,
"cost_for_plan": 0.004244354,
"chosen": true
}
}
},
{
"substitute_best_equal": {
"condition": "WHERE",
"resulting_condition": "t1.a < 10 and t1.b between 10 and 50 and t1.c < 10"
}
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [],
"attached_conditions_summary": [
{
"table": "t1",
"attached_condition": "t1.a < 10 and t1.b between 10 and 50 and t1.c < 10"
}
]
}
},
{
"make_join_readinfo": [
{
"table": "t1",
"index_condition": "t1.a < 10",
"row_condition": "t1.b between 10 and 50 and t1.c < 10"
}
]
}
]
}
}
]
} 0 0
drop table t1;
create table three (a int);
insert into three values (1),(2),(3);
create table t1 (a int, b int, c int, key(a),key(b));
insert into t1 select mod(seq,10), seq, seq from seq_1_to_10000;
analyze table t1;
Table Op Msg_type Msg_text
test.t1 analyze status Engine-independent statistics collected
test.t1 analyze status Table is already up to date
set optimizer_use_condition_selectivity=2;
explain format=json select * from three, t1 where t1.a=three.a and t1.b<5000 and t1.c<1000;
EXPLAIN
{
"query_block": {
"select_id": 1,
"cost": 2.661782024,
"nested_loop": [
{
"table": {
"table_name": "three",
"access_type": "ALL",
"loops": 1,
"rows": 3,
"cost": 0.010504815,
"filtered": 100,
"attached_condition": "three.a is not null"
}
},
{
"table": {
"table_name": "t1",
"access_type": "ref",
"possible_keys": ["a", "b"],
"key": "a",
"key_length": "5",
"used_key_parts": ["a"],
"ref": ["test.three.a"],
"rowid_filter": {
"range": {
"key": "b",
"used_key_parts": ["b"]
},
"rows": 4312,
"selectivity_pct": 43.12
},
"loops": 3,
"rows": 1000,
"cost": 2.651277209,
"filtered": 43.11999893,
"attached_condition": "t1.b < 5000 and t1.c < 1000"
}
}
]
}
}
set optimizer_use_condition_selectivity=4;
explain format=json select * from three, t1 where t1.a=three.a and t1.b<5000 and t1.c<1000;
EXPLAIN
{
"query_block": {
"select_id": 1,
"cost": 1.712236739,
"nested_loop": [
{
"table": {
"table_name": "three",
"access_type": "ALL",
"loops": 1,
"rows": 3,
"cost": 0.010504815,
"filtered": 100
}
},
{
"block-nl-join": {
"table": {
"table_name": "t1",
"access_type": "ALL",
"possible_keys": ["a", "b"],
"loops": 3,
"rows": 10000,
"cost": 1.701731924,
"filtered": 3.230766058,
"attached_condition": "t1.b < 5000 and t1.c < 1000"
},
"buffer_type": "flat",
"buffer_size": "65",
"join_type": "BNL",
"attached_condition": "t1.a = three.a"
}
}
]
}
}
QUERY TRACE MISSING_BYTES_BEYOND_MAX_MEM_SIZE INSUFFICIENT_PRIVILEGES
explain format=json select * from three, t1 where t1.a=three.a and t1.b<5000 and t1.c<1000 {
"steps": [
{
"join_preparation": {
"select_id": 1,
"steps": [
{
"expanded_query": "select three.a AS a,t1.a AS a,t1.b AS b,t1.c AS c from three join t1 where t1.a = three.a and t1.b < 5000 and t1.c < 1000"
}
]
}
},
{
"join_optimization": {
"select_id": 1,
"steps": [
{
"condition_processing": {
"condition": "WHERE",
"original_condition": "t1.a = three.a and t1.b < 5000 and t1.c < 1000",
"steps": [
{
"transformation": "equality_propagation",
"resulting_condition": "t1.b < 5000 and t1.c < 1000 and multiple equal(t1.a, three.a)"
},
{
"transformation": "constant_propagation",
"resulting_condition": "t1.b < 5000 and t1.c < 1000 and multiple equal(t1.a, three.a)"
},
{
"transformation": "trivial_condition_removal",
"resulting_condition": "t1.b < 5000 and t1.c < 1000 and multiple equal(t1.a, three.a)"
}
]
}
},
{
"ref_optimizer_key_uses": [
{
"table": "t1",
"index": "a",
"field": "a",
"equals": "three.a",
"null_rejecting": true
}
]
},
{
"rows_estimation": [
{
"table": "three",
"table_scan": {
"rows": 3,
"read_cost": 0.010408815,
"read_and_compare_cost": 0.010504815
}
},
{
"table": "t1",
"range_analysis": {
"table_scan": {
"rows": 10000,
"cost": 1.581538
},
"potential_range_indexes": [
{
"index": "a",
"usable": false,
"cause": "not applicable"
},
{
"index": "b",
"usable": true,
"key_parts": ["b"]
}
],
"setup_range_conditions": [],
"analyzing_range_alternatives": {
"range_scan_alternatives": [
{
"index": "b",
"ranges": ["(NULL) < (b) < (5000)"],
"rowid_ordered": false,
"using_mrr": false,
"index_only": false,
"rows": 4312,
"cost": 5.324909012,
"chosen": false,
"cause": "cost"
}
],
"analyzing_roworder_intersect": {
"cause": "too few roworder scans"
},
"analyzing_index_merge_union": []
},
"group_index_range": {
"chosen": false,
"cause": "not single_table"
}
}
},
{
"table": "t1",
"rowid_filters": [
{
"key": "b",
"build_cost": 0.611716709,
"rows": 4312
}
]
},
{
"selectivity_for_indexes": [
{
"index_name": "b",
"selectivity_from_index": 0.4312
}
],
"selectivity_for_columns": [
{
"column_name": "c",
"ranges": ["NULL < c < 1000"],
"selectivity_from_histogram": 0.0999
}
],
"cond_selectivity": 0.04307688
}
]
},
{
"table_dependencies": [
{
"table": "three",
"row_may_be_null": false,
"map_bit": 0,
"depends_on_map_bits": []
},
{
"table": "t1",
"row_may_be_null": false,
"map_bit": 1,
"depends_on_map_bits": []
}
]
},
{
"considered_execution_plans": [
{
"plan_prefix": "",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "three",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.010504815,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.010504815,
"uses_join_buffering": false
}
}
},
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 1
},
"considered_access_paths": [
{
"access_type": "scan",
"rows": 10000,
"rows_after_filter": 430.7688,
"rows_out": 430.7688,
"cost": 1.581538,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 430.7688,
"rows_out": 430.7688,
"cost": 1.581538,
"uses_join_buffering": false
}
}
}
]
},
{
"plan_prefix": "",
"table": "three",
"rows_for_plan": 3,
"cost_for_plan": 0.010504815,
"rest_of_plan": [
{
"plan_prefix": "three",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "t1",
"plan_details": {
"record_count": 3
},
"considered_access_paths": [
{
"access_type": "ref",
"index": "a",
"used_range_estimates": false,
"reason": "not available",
"filter": {
"rowid_filter_index": "b",
"index_only_cost": 0.092096742,
"filter_startup_cost": 0.611716709,
"find_key_and_filter_lookup_cost": 0.094772697,
"filter_selectivity": 0.4312,
"original_rows": 1000,
"new_rows": 431.2,
"original_access_cost": 1.203380742,
"with_filter_access_cost": 0.6660551,
"original_found_rows_cost": 1.111284,
"with_filter_found_rows_cost": 0.479185661,
"org_cost": 3.706142226,
"filter_cost": 2.651277209,
"filter_used": true
},
"rows": 431.2,
"cost": 2.651277209,
"chosen": true
},
{
"access_type": "scan_with_join_cache",
"rows": 10000,
"rows_after_filter": 430.7688,
"rows_out": 323.0766,
"cost": 1.701731924,
"cost_without_join_buffer": 4.7319164,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 430.7688,
"rows_out": 323.0766,
"cost": 1.701731924,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "three",
"table": "t1",
"rows_for_plan": 969.2298,
"cost_for_plan": 1.712236739,
"pushdown_cond_selectivity": 0.75,
"filtered": 3.230766,
"rows_out": 323.0766
}
]
},
{
"plan_prefix": "",
"table": "t1",
"rows_for_plan": 430.7688,
"cost_for_plan": 1.581538,
"rest_of_plan": [
{
"plan_prefix": "t1",
"get_costs_for_tables": [
{
"best_access_path": {
"table": "three",
"plan_details": {
"record_count": 430.7688
},
"considered_access_paths": [
{
"access_type": "scan_with_join_cache",
"rows": 3,
"rows_after_filter": 3,
"rows_out": 3,
"cost": 0.156735315,
"cost_without_join_buffer": 4.525146552,
"index_only": false,
"chosen": true
}
],
"chosen_access_method": {
"type": "scan",
"rows_read": 3,
"rows_out": 3,
"cost": 0.156735315,
"uses_join_buffering": true
}
}
}
]
},
{
"plan_prefix": "t1",
"table": "three",
"rows_for_plan": 1292.3064,
"cost_for_plan": 1.738273315,
"pruned_by_cost": true,
"current_cost": 1.738273315,
"best_cost": 1.712236739
}
]
}
]
},
{
"best_join_order": ["three", "t1"],
"rows": 969.2298,
"cost": 1.712236739
},
{
"substitute_best_equal": {
"condition": "WHERE",
"resulting_condition": "t1.a = three.a and t1.b < 5000 and t1.c < 1000"
}
},
{
"attaching_conditions_to_tables": {
"attached_conditions_computation": [
{
"table": "t1",
"range_analysis": {
"table_scan": {
"rows": 10000,
"cost": 1.581538
},
"potential_range_indexes": [
{
"index": "a",
"usable": true,
"key_parts": ["a"]
},
{
"index": "b",
"usable": true,
"key_parts": ["b"]
}
],
"setup_range_conditions": [],
"analyzing_range_alternatives": {
"range_scan_alternatives": [
{
"index": "a"
},
{
"index": "b",
"ranges": ["(NULL) < (b) < (5000)"],
"rowid_ordered": false,
"using_mrr": false,
"index_only": false,
"rows": 4312,
"cost": 5.324909012,
"chosen": false,
"cause": "cost"
}
],
"analyzing_roworder_intersect": {
"cause": "too few roworder scans"
},
"analyzing_index_merge_union": []
},
"group_index_range": {
"chosen": false,
"cause": "not single_table"
}
}
}
],
"attached_conditions_summary": [
{
"table": "three",
"attached_condition": null
},
{
"table": "t1",
"attached_condition": "t1.a = three.a and t1.b < 5000 and t1.c < 1000"
}
]
}
},
{
"make_join_readinfo": []
}
]
}
}
]
} 0 0
drop table three, t1;
#
# MDEV-21095: Index condition push down is not reflected in optimizer trace
#
create table t10 (a int, b int, c int, key(a,b));
insert into t10 select seq, seq, seq from seq_1_to_10000;
explain format=json select * from t10 where a<3 and b!=5 and c<10;
EXPLAIN
{
"query_block": {
"select_id": 1,
"cost": 0.003808422,
"nested_loop": [
{
"table": {
"table_name": "t10",
"access_type": "range",
"possible_keys": ["a"],
"key": "a",
"key_length": "5",
"used_key_parts": ["a"],
"loops": 1,
"rows": 2,
"cost": 0.003808422,
"filtered": 100,
"index_condition": "t10.a < 3 and t10.b <> 5",
"attached_condition": "t10.c < 10"
}
}
]
}
}
set optimizer_trace='enabled=on';
select * from t10 where a<3 and b!=5 and c<10;
a b c
1 1 1
2 2 2
select json_detailed(json_extract(trace, '$**.attaching_conditions_to_tables')) as out1
from information_schema.optimizer_trace;
out1
[
{
"attached_conditions_computation":
[],
"attached_conditions_summary":
[
{
"table": "t10",
"attached_condition": "t10.a < 3 and t10.b <> 5 and t10.c < 10"
}
]
}
]
drop table t10;
#
# MDEV-21092: EXISTS to IN is not reflected in the optimizer trace
#
set optimizer_trace='enabled=on';
create table t1 (cn_c int, cn_n char(10), cn_a int );
create table t2 (ci_p int, ci_c int );
create table t3 (ci_p int, ci_c int );
SELECT cn_n FROM t1 WHERE (EXISTS (select 1 from t2 where ci_p > 100000 and cn_c = ci_c)
OR (cn_n LIKE 'L%') )
AND cn_a > 1000000;
cn_n
select
json_detailed(
json_extract(trace, '$.steps[*].join_optimization[0].steps[0].transformation')
) as out1
from information_schema.optimizer_trace;
out1
[
{
"select_id": 2,
"from": "EXISTS (SELECT)",
"to": "IN (SELECT)",
"upper_not": false
}
]
drop table t1, t2, t3;
#
# MDEV-29997 Partition Pruning not included in optimizer tracing
#
create table t2 (a int, b int) partition by hash(a) partitions 10;
create table t3 (a int, b int) partition by hash(a) partitions 10;
INSERT INTO t2 SELECT seq, seq from seq_1_to_10;
INSERT INTO t3 SELECT seq, seq from seq_1_to_10;
set optimizer_trace='enabled=on';
explain partitions select * from t2,t3 where t2.a in (2,3,4) and t3.a in (4,5);
id select_type table partitions type possible_keys key key_len ref rows Extra
1 SIMPLE t3 p4,p5 ALL NULL NULL NULL NULL 2 Using where
1 SIMPLE t2 p2,p3,p4 ALL NULL NULL NULL NULL 3 Using where; Using join buffer (flat, BNL join)
select json_detailed(json_extract(trace, '$**.prune_partitions')) as out1
from information_schema.optimizer_trace;
out1
[
{
"table": "t2",
"used_partitions": "p2,p3,p4"
},
{
"table": "t3",
"used_partitions": "p4,p5"
}
]
drop table t2,t3;
create table t1 (
a int
) partition by range (a)
( partition p0 values less than(10),
partition p1 values less than (20),
partition p2 values less than (25)
);
insert into t1 values (5),(15),(22);
explain select * from t1 where a = 28;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE NULL NULL NULL NULL NULL NULL NULL Impossible WHERE noticed after reading const tables
select json_detailed(json_extract(trace, '$**.prune_partitions')) as out1
from information_schema.optimizer_trace;
out1
[
{
"table": "t1",
"used_partitions": ""
}
]
drop table t1;
set @@optimizer_switch= @save_optimizer_switch;
set @@use_stat_tables= @save_use_stat_tables;
set @@histogram_size= @save_histogram_size;
set @@optimizer_use_condition_selectivity= @save_optimizer_use_condition_selectivity;