-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Full text search constraint shouldn't assume "%" #212
Comments
sounds like a good idea to me |
how exactly does it work with jackrabbit? when do looking at http://jackrabbit.510166.n4.nabble.com/jcr-sql2-contains-full-text-search-not-working-td4655655.html i have no clue anymore with wildcards or not wildcard or if by default, |
It seems to match words by default:
|
thanks dan. yeah then lets not automatically add % ever, but replace * by %. this is a BC break for jackalope-doctrine-dbal users however, they previously had partial matching by default... if you do a PR to fix this, please don't forget to add a note to the changelog. i consider it a bugfix, but it can still surprise people... |
Currently the full-text-search automatically wraps the query in "%".
In jackrabbit you need to delimit the string with
*
manually, it doesn't happen automatically.We should substitute
*
with%
in the full text search I think.The text was updated successfully, but these errors were encountered: