mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
12 lines
272 B
Text
12 lines
272 B
Text
|
#
|
||
|
# Run subselect.test without semi-join optimization (test materialize)
|
||
|
#
|
||
|
show variables like 'optimizer_switch';
|
||
|
set optimizer_switch='materialization=off,semijoin=off';
|
||
|
|
||
|
--source t/subselect.test
|
||
|
|
||
|
set optimizer_switch=default;
|
||
|
show variables like 'optimizer_switch';
|
||
|
|