Question about ranking & full text - Mailing list pgsql-general

From Nicolas Paris
Subject Question about ranking & full text
Date
Msg-id CA+ssMOShk+tir9gbcL0HR-s3CrpjHjxthxrTVMRKYd9o3HMfeA@mail.gmail.com
Whole thread Raw
Responses Re: Question about ranking & full text
List pgsql-general
Hi,
I wonder why the third query returns 0.
To me, it would return 0.1, because there is not baz in the text

Thanks !
(pg 9.4)

SELECT ts_rank_cd(apod.t, query,4) AS rank
FROM (SELECT to_tsvector('foo baz') as t) as apod, to_tsquery('foo & baz') query
WHERE query @@ apod.t;
rank        |
------------|
0.100000001 |

SELECT ts_rank_cd(apod.t, query,4) AS rank
FROM (SELECT to_tsvector('foo ') as t) as apod, to_tsquery('foo & ! baz') query
WHERE query @@ apod.t;

rank        |
------------|
0.100000001 |

SELECT ts_rank_cd(apod.t, query,4) AS rank
FROM (SELECT to_tsvector('foo ') as t) as apod, to_tsquery(' ! baz') query
WHERE query @@ apod.t;

rank        |
------------|
0.0         |


pgsql-general by date:

Previous
From: Alexey Bashtanov
Date:
Subject: Re: Deadlock between VACUUM and ALTER TABLE commands
Next
From: Artur Zakirov
Date:
Subject: Re: Question about ranking & full text