summaryrefslogtreecommitdiff
path: root/mysql-test/t/fulltext_charsets.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/t/fulltext_charsets.test')
-rw-r--r--mysql-test/t/fulltext_charsets.test10
1 files changed, 0 insertions, 10 deletions
diff --git a/mysql-test/t/fulltext_charsets.test b/mysql-test/t/fulltext_charsets.test
deleted file mode 100644
index 3ac9791bd1a..00000000000
--- a/mysql-test/t/fulltext_charsets.test
+++ /dev/null
@@ -1,10 +0,0 @@
-#
-# MDEV-11241 Certain combining marks cause MariaDB to crash when doing Full-Text searches
-#
-set names utf8mb4;
-
-create table t1 (a int, b text, fulltext (b)) charset=utf8mb4 collate=utf8mb4_unicode_ci;
-insert t1 values (1000, 'C͓̙̯͔̩ͅͅi̩̘̜̲a̯̲̬̳̜̖̤o͕͓̜͓̺̖̗,̠̬͚ ̺T͇̲h͈̱e ̬̜D̖o̦̖͔̗͖̩̘c̣̼t̝͉̫̮̗o͉̫̭r̙͎̗.͓̪̥');
-select a from t1 where match(b) against ('ciao' in boolean mode);
-drop table t1;
-