diff options
author | serg@serg.mylan <> | 2004-11-22 18:37:30 +0100 |
---|---|---|
committer | serg@serg.mylan <> | 2004-11-22 18:37:30 +0100 |
commit | dca2182fdc8d2eedeaebfd2fbec8cd07b8be3fb5 (patch) | |
tree | cf7fb0f32e0d256430f2a593f4984be82f503715 /mysql-test/r/fulltext.result | |
parent | 2d8c21f700ceed83e5c7ef3ac20cccb434da48fb (diff) | |
download | mariadb-git-dca2182fdc8d2eedeaebfd2fbec8cd07b8be3fb5.tar.gz |
ft_boolean_search.c:
bug#6705 - (+trunc1* +trunc2*)
fulltext.test, fulltext.result:
bug#6705
Diffstat (limited to 'mysql-test/r/fulltext.result')
-rw-r--r-- | mysql-test/r/fulltext.result | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/r/fulltext.result b/mysql-test/r/fulltext.result index 31be1881897..50f0a1dc120 100644 --- a/mysql-test/r/fulltext.result +++ b/mysql-test/r/fulltext.result @@ -162,6 +162,14 @@ a select * from t1 where match a against ("+aaa10 +(bbb*)" in boolean mode); a aaa10 bbb20 +select * from t1 where match a against ("+(+aaa* +bbb1*)" in boolean mode); +a +aaa20 bbb15 +aaa30 bbb10 +select * from t1 where match a against ("(+aaa* +bbb1*)" in boolean mode); +a +aaa20 bbb15 +aaa30 bbb10 drop table t1; CREATE TABLE t1 ( id int(11), |