summaryrefslogtreecommitdiff
path: root/mysql-test/suite
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2018-09-05 01:34:25 +0200
committerSergei Golubchik <serg@mariadb.org>2018-09-22 00:22:09 +0200
commitfb324e3f8f7e81f60f19aa0840550acdcbbc429f (patch)
treedbb0d29b06c3c3f2b2b00b5574011a475f74f41e /mysql-test/suite
parent7438667fa96433605078ada7874fc17eac925d9f (diff)
downloadmariadb-git-fb324e3f8f7e81f60f19aa0840550acdcbbc429f.tar.gz
MDEV-9137 MariaDB Crash on Query Using Aria Engine
fix for 2-level ft indexes and boolean search in Aria
Diffstat (limited to 'mysql-test/suite')
-rw-r--r--mysql-test/suite/maria/fulltext2.result3
-rw-r--r--mysql-test/suite/maria/fulltext2.test2
2 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/suite/maria/fulltext2.result b/mysql-test/suite/maria/fulltext2.result
index f4e2e5dd5c9..9fa82451b8f 100644
--- a/mysql-test/suite/maria/fulltext2.result
+++ b/mysql-test/suite/maria/fulltext2.result
@@ -18,5 +18,8 @@ test.t1 check status OK
repair table t1;
Table Op Msg_type Msg_text
test.t1 repair status OK
+select count(*) from t1 where match a against ('aaaxxx' in boolean mode);
+count(*)
+1024
insert t1 (a) values ('aaaxxx'),('aaayyy');
drop table t1;
diff --git a/mysql-test/suite/maria/fulltext2.test b/mysql-test/suite/maria/fulltext2.test
index 352ca405e99..8236eccd3af 100644
--- a/mysql-test/suite/maria/fulltext2.test
+++ b/mysql-test/suite/maria/fulltext2.test
@@ -39,6 +39,8 @@ repair table t1;
check table t1;
repair table t1;
+select count(*) from t1 where match a against ('aaaxxx' in boolean mode);
+
# mi_write:
insert t1 (a) values ('aaaxxx'),('aaayyy');