Displaying 1 result from an estimated 1 matches for "bool_arg".
2012 Jun 29
0
Adding Bi-gram in the QueryParser and Object.
...ve: *
*Hate: *
Since we are trying to avoid query or have a single term.We can
restrain adding them as bi-grams.
*
*
*bool_operator:*
https://github.com/sehaj-sk/xapian/blob/mybranch/xapian-core/docs/queryparser_new.rst#boolean-query
*
*
Boolean operator are done by following type of grammer rules. bool_arg(E)
bool_operator bool_arg(P).
since *bool_arg* are *expr *i.e they are Query Object hence getting Bigrams
would be difficult.Please suggest something.
Example.
assertion OR failed
*Current parsed Query:*
*
*
Query((Zfail at 1 OR Zassert at 2))
*
*
*Since Terms are converted to Query object how...