summaryrefslogtreecommitdiff
path: root/mysql-test/t/fulltext_plugin.test
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2011-12-02 16:26:43 +0100
committerSergei Golubchik <sergii@pisem.net>2011-12-02 16:26:43 +0100
commitd5fd757a4279f4fa8f032c6dd63d1d121d8e1fea (patch)
treead5b63e8b1d154ab7b1753f9e156e7741b01899d /mysql-test/t/fulltext_plugin.test
parent791286ee1c3c705cb8853e242cdf718a7b5ce5b7 (diff)
downloadmariadb-git-d5fd757a4279f4fa8f032c6dd63d1d121d8e1fea.tar.gz
1. add --plugin-dir and --default-auth to mysqltest.
2. dialog plugin now always returns mysql->password if non-empty and the first question is of password type 3. split get_tty_password into get_tty_password_buff and strdup. 4. dialog plugin now uses get_tty_password by default 5. dialog.test 6. moved small tests of individual plugins into a dedicated suite
Diffstat (limited to 'mysql-test/t/fulltext_plugin.test')
-rw-r--r--mysql-test/t/fulltext_plugin.test11
1 files changed, 0 insertions, 11 deletions
diff --git a/mysql-test/t/fulltext_plugin.test b/mysql-test/t/fulltext_plugin.test
deleted file mode 100644
index 0e2f53d5b15..00000000000
--- a/mysql-test/t/fulltext_plugin.test
+++ /dev/null
@@ -1,11 +0,0 @@
---source include/have_simple_parser.inc
-
-#
-# BUG#39746 - Debug flag breaks struct definition (server crash)
-#
---replace_result .dll .so
-eval INSTALL PLUGIN simple_parser SONAME '$MYPLUGLIB_SO';
-CREATE TABLE t1(a TEXT, b TEXT, FULLTEXT(a) WITH PARSER simple_parser);
-ALTER TABLE t1 ADD FULLTEXT(b) WITH PARSER simple_parser;
-DROP TABLE t1;
-UNINSTALL PLUGIN simple_parser;