@@ -122,15 +122,14 @@ private static String getOptimizerSwitchConfiguration(Randomly r) {
122122 StringBuilder sb = new StringBuilder ();
123123 sb .append ("'" );
124124 String [] options = { "condition_pushdown_for_derived" , "condition_pushdown_for_subquery" ,
125- "condition_pushdown_from_having" , "derived_merge" , "derived_with_keys" , "engine_condition_pushdown" ,
126- "exists_to_in" , "extended_keys" , "firstmatch" , "index_condition_pushdown" , "hash_join_cardinality" ,
127- "index_merge" , "index_merge_intersection" , "index_merge_sort_intersection" ,
128- "index_merge_sort_union" , "index_merge_union" , "in_to_exists" , "join_cache_bka" ,
129- "join_cache_hashed" , "join_cache_incremental" , "loosescan" , "materialization" , "mrr" ,
130- "mrr_cost_based" , "mrr_sort_keys" , "not_null_range_scan" , "optimize_join_buffer_size" ,
131- "orderby_uses_equalities" , "outer_join_with_cache" , "partial_match_rowid_merge" ,
132- "partial_match_table_scan" , "rowid_filter" , "semijoin" , "semijoin_with_cache" , "split_materialized" ,
133- "subquery_cache" , "table_elimination" };
125+ "condition_pushdown_from_having" , "derived_merge" , "derived_with_keys" , "exists_to_in" ,
126+ "extended_keys" , "firstmatch" , "index_condition_pushdown" , "hash_join_cardinality" , "index_merge" ,
127+ "index_merge_intersection" , "index_merge_sort_intersection" , "index_merge_sort_union" ,
128+ "index_merge_union" , "in_to_exists" , "join_cache_bka" , "join_cache_hashed" ,
129+ "join_cache_incremental" , "loosescan" , "materialization" , "mrr" , "mrr_cost_based" , "mrr_sort_keys" ,
130+ "not_null_range_scan" , "optimize_join_buffer_size" , "orderby_uses_equalities" ,
131+ "outer_join_with_cache" , "partial_match_rowid_merge" , "partial_match_table_scan" , "rowid_filter" ,
132+ "semijoin" , "semijoin_with_cache" , "split_materialized" , "subquery_cache" , "table_elimination" };
134133 List <String > optionSubset = Arrays .asList (Randomly .fromOptions (options ));
135134 sb .append (optionSubset .stream ().map (s -> s + "=" + Randomly .fromOptions ("on" , "off" ))
136135 .collect (Collectors .joining ("," )));
@@ -191,9 +190,9 @@ public static SQLQueryAdapter resetOptimizer() {
191190 public static List <SQLQueryAdapter > getAllOptimizer (MariaDBGlobalState globalState ) {
192191 List <SQLQueryAdapter > result = new ArrayList <>();
193192 String [] options = { "condition_pushdown_for_derived" , "condition_pushdown_for_subquery" ,
194- "condition_pushdown_from_having" , "derived_merge" , "derived_with_keys" , "engine_condition_pushdown " ,
195- "exists_to_in " , "extended_keys " , "firstmatch " , "index_condition_pushdown" , "hash_join_cardinality " ,
196- "index_merge" , " index_merge_intersection" , "index_merge_sort_intersection" , "index_merge_sort_union" ,
193+ "condition_pushdown_from_having" , "derived_merge" , "derived_with_keys" , "exists_to_in" , "extended_keys " ,
194+ "firstmatch " , "index_condition_pushdown " , "hash_join_cardinality " , "index_merge " ,
195+ "index_merge_intersection" , "index_merge_sort_intersection" , "index_merge_sort_union" ,
197196 "index_merge_union" , "in_to_exists" , "join_cache_bka" , "join_cache_hashed" , "join_cache_incremental" ,
198197 "loosescan" , "materialization" , "mrr" , "mrr_cost_based" , "mrr_sort_keys" , "not_null_range_scan" ,
199198 "optimize_join_buffer_size" , "orderby_uses_equalities" , "outer_join_with_cache" ,
0 commit comments