Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
QueryParser: do not try to parse unbroken words as group terms
Fixes a bug where QueryParser fails with an error when parsing the sequence of: term, whitespace, unbroken words, term. The underlying issue is that unbroken words can not be part of a group according to the lemon grammar. As the combination of unbroken words and terms is highly unlikely to ever form a multi-term synonym, this patch changes the query parser to leave group term mode after having parsed unbroken words.
- Loading branch information