mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
14 lines
296 B
Text
14 lines
296 B
Text
#
|
|
# MATCH on the derived tables
|
|
#
|
|
|
|
#
|
|
# MDEV-4316 MariaDB server crash with signal 11
|
|
#
|
|
|
|
create table t1 (ft text) engine=myisam;
|
|
insert into t1 values ('test1'),('test2');
|
|
select distinct match(ft) against("test1" in boolean mode) from
|
|
(select distinct ft from t1) as t;
|
|
drop table t1;
|
|
|