I am using Postgres FTS to search a field in a table. The only issue is for some reason the below issue is happening.
store=# select name from service where to_tsvector(name) @@ to_tsquery('find:*') = true;
name
--------------
Finding Nora
(1 row)
store=# select name from service where to_tsvector(name) @@ to_tsquery('findi:*') = true;
name
------
(0 rows)
store=# select name from service where to_tsvector(name) @@ to_tsquery('findi:*') = true;
How come when searching using the query findi:*,the result doesnt show?