mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
782d86af44
remove emtpty Item_func_match::update_used_tables() method
6 lines
269 B
Text
6 lines
269 B
Text
set optimizer_switch = 'derived_merge=on';
|
|
create table t1 (c1 char(8), c2 char(8)) engine=myisam;
|
|
insert into t1 values ('test1','test2'),('test3','test4');
|
|
select * from (select c1 from t1 where match (c2) against ('hello' in boolean mode)) as alias;
|
|
drop table t1;
|
|
|