diff options
author | serg@janus.mylan <> | 2007-07-11 15:26:19 +0200 |
---|---|---|
committer | serg@janus.mylan <> | 2007-07-11 15:26:19 +0200 |
commit | 859304f70828475730745c2bcbfb90a1a6224456 (patch) | |
tree | 92e51308f72b9775069ff6712b8b4db0a19c3b0e /mysql-test/r/fulltext.result | |
parent | 05a12b7bb7b0bd382edf08bfbe4b6e07e4d69d03 (diff) | |
download | mariadb-git-859304f70828475730745c2bcbfb90a1a6224456.tar.gz |
fix for smarter index mergein fulltext
to work for queries like "+a (b)"
Diffstat (limited to 'mysql-test/r/fulltext.result')
-rw-r--r-- | mysql-test/r/fulltext.result | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/r/fulltext.result b/mysql-test/r/fulltext.result index 6f6760e31bc..02b115cb6dc 100644 --- a/mysql-test/r/fulltext.result +++ b/mysql-test/r/fulltext.result @@ -485,4 +485,7 @@ INSERT INTO t1 VALUES('Offside'),('City Of God'); SELECT a FROM t1 WHERE MATCH a AGAINST ('+city of*' IN BOOLEAN MODE); a City Of God +SELECT a FROM t1 WHERE MATCH a AGAINST ('+city (of)*' IN BOOLEAN MODE); +a +City Of God DROP TABLE t1; |