Return-Path: X-Original-To: apmail-lucene-dev-archive@www.apache.org Delivered-To: apmail-lucene-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0797E995A for ; Tue, 27 Mar 2012 23:08:51 +0000 (UTC) Received: (qmail 81335 invoked by uid 500); 27 Mar 2012 23:08:50 -0000 Delivered-To: apmail-lucene-dev-archive@lucene.apache.org Received: (qmail 81240 invoked by uid 500); 27 Mar 2012 23:08:50 -0000 Mailing-List: contact dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list dev@lucene.apache.org Received: (qmail 81194 invoked by uid 99); 27 Mar 2012 23:08:50 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Mar 2012 23:08:50 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Mar 2012 23:08:49 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 2D9E734974E for ; Tue, 27 Mar 2012 23:08:29 +0000 (UTC) Date: Tue, 27 Mar 2012 23:08:29 +0000 (UTC) From: "Hoss Man (Assigned) (JIRA)" To: dev@lucene.apache.org Message-ID: <1657188931.26216.1332889709204.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <1897301679.38690.1332279578230.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Assigned] (SOLR-3261) edismax ignores explicit operators when literal colon is found MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/SOLR-3261?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Hoss Man reassigned SOLR-3261: ------------------------------ Assignee: Hoss Man > edismax ignores explicit operators when literal colon is found > -------------------------------------------------------------- > > Key: SOLR-3261 > URL: https://issues.apache.org/jira/browse/SOLR-3261 > Project: Solr > Issue Type: Bug > Components: query parsers > Reporter: Hoss Man > Assignee: Hoss Man > Fix For: 3.6, 4.0 > > Attachments: SOLR-3261.patch, SOLR-3261.patch > > > Using the 3.5 example this query... > q = bogus:xxx AND text_t:yak > http://localhost:8983/solr/select/?debugQuery=true&qf=a_t+b_t&defType=edismax&mm=0&q=bogus:xxx+AND+text_t:yak > parses as... > {noformat} > +(DisjunctionMaxQuery((a_t:bogus:xxx | b_t:bogus:xxx)) DisjunctionMaxQuery((a_t:and | b_t:and)) text_t:yak) > {noformat} > (Note that "AND" is considered a term and is searched for in the qf fields) > But this query... > q = foo_s:xxx AND text_t:yak > http://localhost:8983/solr/select/?debugQuery=true&qf=a_t+b_t&defType=edismax&mm=0&q=foo_s:xxx+AND+text_t:yak > parses correctly treating AND as an explicit operator... > {noformat} > +(+foo_s:xxx +text_t:yak) > {noformat} > (this problem also seems to affect trunk circa 2012-03-20) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org For additional commands, e-mail: dev-help@lucene.apache.org