mirror of
https://github.com/MariaDB/server.git
synced 2025-11-22 17:44:29 +03:00
14 lines
354 B
Plaintext
14 lines
354 B
Plaintext
#
|
|
# Run subselect.test without semi-join optimization (test materialize)
|
|
#
|
|
--replace_regex /,table_elimination=on//
|
|
show variables like 'optimizer_switch';
|
|
set optimizer_switch='materialization=off,semijoin=off';
|
|
|
|
--source t/subselect.test
|
|
|
|
set optimizer_switch=default;
|
|
--replace_regex /,table_elimination=on//
|
|
show variables like 'optimizer_switch';
|
|
|