summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2011-10-05 20:16:42 +0200
committerSergei Golubchik <sergii@pisem.net>2011-10-05 20:16:42 +0200
commitda81a1f01e2b689c61d549e1277ac0c2d61c2814 (patch)
tree7eedeaa051dc1975925842b8461dcba11b08d5ff /mysql-test
parent1b7e566683d13906530a2218791bb5f48b6425ec (diff)
downloadmariadb-git-da81a1f01e2b689c61d549e1277ac0c2d61c2814.tar.gz
fix fulltext_plugin.test on windows
Diffstat (limited to 'mysql-test')
-rw-r--r--mysql-test/t/fulltext_plugin.test3
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/t/fulltext_plugin.test b/mysql-test/t/fulltext_plugin.test
index 31978dadc51..0e2f53d5b15 100644
--- a/mysql-test/t/fulltext_plugin.test
+++ b/mysql-test/t/fulltext_plugin.test
@@ -3,7 +3,8 @@
#
# BUG#39746 - Debug flag breaks struct definition (server crash)
#
-INSTALL PLUGIN simple_parser SONAME 'mypluglib.so';
+--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;