summaryrefslogtreecommitdiff
path: root/mysql-test/r/fulltext_multi.result
diff options
context:
space:
mode:
authorunknown <serg@serg.mysql.com>2001-10-12 19:10:11 +0200
committerunknown <serg@serg.mysql.com>2001-10-12 19:10:11 +0200
commit0c2d19b5b5a7157e73743701ebe90c3b194ccfd0 (patch)
tree56366b425d29a1e7b98e3b0995fdd53adfd83f8d /mysql-test/r/fulltext_multi.result
parent6db2120514c3e7442f69c99be017b2baa03bb09a (diff)
downloadmariadb-git-0c2d19b5b5a7157e73743701ebe90c3b194ccfd0.tar.gz
mysql-test/r/fulltext*.result updated
mysql-test/r/fulltext_cache.result: fixed mysql-test/r/fulltext_left_join.result: fixed mysql-test/r/fulltext_multi.result: fixed mysql-test/r/fulltext_order_by.result: fixed
Diffstat (limited to 'mysql-test/r/fulltext_multi.result')
-rw-r--r--mysql-test/r/fulltext_multi.result8
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/fulltext_multi.result b/mysql-test/r/fulltext_multi.result
index 27374e9e4aa..72b7102fd3f 100644
--- a/mysql-test/r/fulltext_multi.result
+++ b/mysql-test/r/fulltext_multi.result
@@ -14,17 +14,17 @@ INSERT INTO t1 VALUES (2,'asdf fdsa','lkjh fghj');
INSERT INTO t1 VALUES (3,'qpwoei','zmxnvb');
SELECT a, MATCH b AGAINST ('lala lkjh') FROM t1;
a MATCH b AGAINST ('lala lkjh')
-1 0.67003110026735
+1 0.67003107070923
2 0
3 0
SELECT a, MATCH c AGAINST ('lala lkjh') FROM t1;
a MATCH c AGAINST ('lala lkjh')
1 0
-2 0.67756324121582
+2 0.67756325006485
3 0
SELECT a, MATCH b,c AGAINST ('lala lkjh') FROM t1;
a MATCH b,c AGAINST ('lala lkjh')
-1 0.64840710366884
-2 0.66266459031789
+1 0.64840710163116
+2 0.66266459226608
3 0
drop table t1;