I've tried to use FULLTEXT index and CONTAINSTEXT feature.

So at first I have created index:

create index location_name on Location (name) FULLTEXT

then I ve executed query:
select name from Location where name CONTAINSTEXT 'Lon'
Some results were retrieved:

London
East London
Londerzeel

But when I tried to execute
select name from Location where name CONTAINSTEXT 'Lo'
or
select name from Location where name CONTAINSTEXT 'L'
I received empty results.
It seems that CONTAINSTEXT works fine only with strings that are longer 
than 2 symbols.

Isn't it a bug?

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"OrientDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to