diff options
author | msvensson@neptunus.(none) <> | 2006-03-22 16:48:35 +0100 |
---|---|---|
committer | msvensson@neptunus.(none) <> | 2006-03-22 16:48:35 +0100 |
commit | 13c5e780ed0f5403cae8d11ddee0c1e330107404 (patch) | |
tree | 9cfe8e5f63a4b3a48630094199de84f94d20876d /mysql-test/r/fulltext.result | |
parent | 46b5b6c644237094d6b850757c4e8cea99179a44 (diff) | |
parent | bbc40518261da9dd8efdd2bf6d35706f478388e2 (diff) | |
download | mariadb-git-13c5e780ed0f5403cae8d11ddee0c1e330107404.tar.gz |
Merge neptunus.(none):/home/msvensson/mysql/mysql-5.0
into neptunus.(none):/home/msvensson/mysql/mysql-5.1
Diffstat (limited to 'mysql-test/r/fulltext.result')
-rw-r--r-- | mysql-test/r/fulltext.result | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mysql-test/r/fulltext.result b/mysql-test/r/fulltext.result index d5af37c0fec..fe86f20fe22 100644 --- a/mysql-test/r/fulltext.result +++ b/mysql-test/r/fulltext.result @@ -460,12 +460,12 @@ t1 CREATE TABLE `t1` ( DROP TABLE t1; CREATE TABLE t1 (a TEXT, FULLTEXT KEY(a)); INSERT INTO t1 VALUES('test'),('test1'),('test'); -PREPARE stmt from "SELECT a, MATCH(a) AGAINST('test1 test') FROM t1 WHERE MATCH(a) AGAINST('test1 test')"; +PREPARE stmt from "SELECT a, FORMAT(MATCH(a) AGAINST('test1 test'),6) FROM t1 WHERE MATCH(a) AGAINST('test1 test')"; EXECUTE stmt; -a MATCH(a) AGAINST('test1 test') -test1 0.68526661396027 +a FORMAT(MATCH(a) AGAINST('test1 test'),6) +test1 0.685267 EXECUTE stmt; -a MATCH(a) AGAINST('test1 test') -test1 0.68526661396027 +a FORMAT(MATCH(a) AGAINST('test1 test'),6) +test1 0.685267 DEALLOCATE PREPARE stmt; DROP TABLE t1; |