mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
13058d8056
- Let "mysqld --help --verbose" list all optimizer options - Make it possible to add new @@optimizer_switch flags w/o causing .result changes all over the testsuite: = Remove "select @@optimizer_switch" from tests that do not need all switches = Move @@optimizer_switch-specific tests to t/optimizer_switch.test
8 lines
171 B
Text
8 lines
171 B
Text
#
|
|
# Run subselect.test without semi-join optimization (test materialize)
|
|
#
|
|
set optimizer_switch='semijoin=off';
|
|
|
|
--source t/subselect.test
|
|
|
|
set optimizer_switch=default;
|