summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authorSergey Petrunya <psergey@askmonty.org>2011-12-28 12:12:48 +0400
committerSergey Petrunya <psergey@askmonty.org>2011-12-28 12:12:48 +0400
commit3759df08ebb51c4af8afa961215407d71fe58ae5 (patch)
tree6f87a4812edd63ed519fd9de008c74681f56549f /mysql-test
parent679b7704c6fea7fe4d01884a070197414c57a1ba (diff)
downloadmariadb-git-3759df08ebb51c4af8afa961215407d71fe58ae5.tar.gz
Update test results.
Diffstat (limited to 'mysql-test')
-rw-r--r--mysql-test/r/fulltext_order_by.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/fulltext_order_by.result b/mysql-test/r/fulltext_order_by.result
index 58ed6aac6f9..2085e7ea885 100644
--- a/mysql-test/r/fulltext_order_by.result
+++ b/mysql-test/r/fulltext_order_by.result
@@ -46,11 +46,11 @@ a MATCH (message) AGAINST ('steve' IN BOOLEAN MODE)
7 1
SELECT a, FORMAT(MATCH (message) AGAINST ('steve'),6) as rel FROM t1 ORDER BY rel;
a rel
-3 0.000000
1 0.000000
5 0.000000
2 0.000000
6 0.000000
+3 0.000000
7 0.895690
4 0.905873
SELECT a, MATCH (message) AGAINST ('steve' IN BOOLEAN MODE) as rel FROM t1 ORDER BY rel;