1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-22 17:44:29 +03:00
Files
mariadb/mysql-test/t/subselect_mat.test
Sergey Petrunya 62bf7f6124 MWL#90: Subqueries: Inside-out execution for non-semijoin materialized subqueries that are AND-parts of the WHERE
- Code cleanu.
- Make MWL#90 code require @@optimizer_switch='semijoin=on'
- Update test results with the above
- Fork subselect_mat.test - we want to check both semi-join materialization, 
  which now has broader scope and non-semijoin materialization.
2010-05-25 10:32:15 +04:00

13 lines
233 B
Plaintext

#
# Hash semi-join regression tests
# (WL#1110: Subquery optimization: materialization)
#
# force the use of materialization
set @@optimizer_switch='semijoin=off';
--source t/subselect_sj_mat.test
set @@optimizer_switch=default;