blob: 1b97aa13955d5f2daad3abfb9eb6272f6166237e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#
# Run subselect.test with exists to in transformation
#
select @@optimizer_switch like '%exists_to_in=on%';
set optimizer_switch='exists_to_in=on';
--source t/subselect.test
set optimizer_switch=default;
select @@optimizer_switch like '%exists_to_in=on%';
|