diff options
author | unknown <serg@sergbook.mysql.com> | 2002-11-06 16:21:41 +0100 |
---|---|---|
committer | unknown <serg@sergbook.mysql.com> | 2002-11-06 16:21:41 +0100 |
commit | c5d4041347524e1e4e415db15071fb7dd6aa79ac (patch) | |
tree | 066d458d95cd9cffe9746287acc7ae19dc814630 /myisam | |
parent | f9b7e3abc8bb0b3440fd2a10e0b201cefb587f4a (diff) | |
download | mariadb-git-c5d4041347524e1e4e415db15071fb7dd6aa79ac.tar.gz |
BETWEEN fixed
myisam/ft_nlq_search.c:
cleanup
mysql-test/r/func_time.result:
updated
Diffstat (limited to 'myisam')
-rw-r--r-- | myisam/ft_nlq_search.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/myisam/ft_nlq_search.c b/myisam/ft_nlq_search.c index 6df9fd235fa..8c5d504b8d5 100644 --- a/myisam/ft_nlq_search.c +++ b/myisam/ft_nlq_search.c @@ -154,7 +154,8 @@ static int walk_and_match(FT_WORD *word, uint32 count, ALL_IN_ONE *aio) if (doc_cnt) { word->weight*=GWS_IN_USE; - if (word->weight < 0) word->weight=0; + if (word->weight < 0) + word->weight=0; } DBUG_RETURN(0); |