mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 22:12:30 +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
11 lines
289 B
Text
11 lines
289 B
Text
#
|
|
# Run subselect.test without semi-join optimization (test materialize)
|
|
#
|
|
select @@optimizer_switch like '%materialization=on%';
|
|
set optimizer_switch='materialization=off';
|
|
|
|
--source t/subselect.test
|
|
|
|
set optimizer_switch=default;
|
|
select @@optimizer_switch like '%materialization=on%';
|
|
|