search for: aut2

Displaying 1 result from an estimated 1 matches for "aut2".

Did you mean: aut
2010 Jan 19
1
QueryParser: aliases and OP_AND
...quot;alias", I mean a search field mapped to multiple term prefixes). With the following php code : <?php $parser=new XapianQueryParser(); $parser->set_default_op(XapianQuery::OP_AND); $parser->add_prefix('alias', 'AUT1:'); $parser->add_prefix('alias', 'AUT2:'); echo $parser->parse_query('alias:(john smith)')->get_description(); ?> I get: Xapian::Query(((AUT1:john:(pos=1) OR AUT2:john:(pos=1)) AND (AUT1:smith:(pos=2) OR AUT2:smith:(pos=2)))) i.e. (AUT1:john OR AUT2:john) AND (AUT1:smith OR AUT2:smith) I was expecting something l...