mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
b83cb52e9e
There are still test failures because of: - Wrong query results in outer join + semi join - EXPLAIN output differences
11 lines
252 B
Text
11 lines
252 B
Text
#
|
|
# Run subselect.test without semi-join optimization (test materialize)
|
|
#
|
|
show variables like 'optimizer_switch';
|
|
set optimizer_switch='semijoin=off';
|
|
|
|
--source t/subselect.test
|
|
|
|
set optimizer_switch=default;
|
|
show variables like 'optimizer_switch';
|
|
|