summaryrefslogtreecommitdiff
path: root/mysql-test/suite/parts/r/fulltext.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/parts/r/fulltext.result')
-rw-r--r--mysql-test/suite/parts/r/fulltext.result6
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/suite/parts/r/fulltext.result b/mysql-test/suite/parts/r/fulltext.result
new file mode 100644
index 00000000000..6495c9aa5a1
--- /dev/null
+++ b/mysql-test/suite/parts/r/fulltext.result
@@ -0,0 +1,6 @@
+create table t1 (i int, f1 varchar(512), f2 varchar(512), fulltext (f1)) engine=myisam partition by hash (i);
+select * from t1 where match (f1) against ('foo');
+i f1 f2
+select * from t1 where match (f2) against ('bar' in boolean mode) ;
+i f1 f2
+drop table t1;