mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 18:20:07 +01:00
c1de6f8b77
semijoin=on,firstmatch=on,loosescan=on to semijoin=off,firstmatch=off,loosescan=off Adjust the testcases: - Modify subselect*.test and join_cache.test so that all tests use the same execution paths as before (i.e. optimizations that are being tested are enabled) - Let all other test files run with the new default settings (i.e. with new optimizations disabled) - Copy subquery testcases from these files into t/subselect_extra.test which will run them with new optimizations enabled.
9 lines
254 B
Text
9 lines
254 B
Text
#
|
|
# Run subselect.test without semi-join and materialization optimizations
|
|
# (test in-to-exists)
|
|
|
|
set @optimizer_switch_for_subselect_test='materialization=off,semijoin=off';
|
|
--source t/subselect.test
|
|
|
|
set @optimizer_switch_for_subselect_test=null;
|
|
|