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 0B76BDA39 for ; Mon, 11 Mar 2013 18:31:15 +0000 (UTC) Received: (qmail 98794 invoked by uid 500); 11 Mar 2013 18:31:13 -0000 Delivered-To: apmail-lucene-dev-archive@lucene.apache.org Received: (qmail 98721 invoked by uid 500); 11 Mar 2013 18:31:13 -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 98712 invoked by uid 99); 11 Mar 2013 18:31:13 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Mar 2013 18:31:13 +0000 Date: Mon, 11 Mar 2013 18:31:13 +0000 (UTC) From: "Ryan Ernst (JIRA)" To: dev@lucene.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (SOLR-4558) raw query parser cannot parse value "{!" MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Ryan Ernst created SOLR-4558: -------------------------------- Summary: raw query parser cannot parse value "{!" Key: SOLR-4558 URL: https://issues.apache.org/jira/browse/SOLR-4558 Project: Solr Issue Type: Bug Components: query parsers Affects Versions: 4.2 Reporter: Ryan Ernst In QParser.getParser, local params are handled before passing the query to the parser plugin. This means a query parser plugin will never see "{!" as a value to parse (even if the parsers syntax might allow that). You could use parameter dereferencing, but that is awkward, and it is useful in general to be able to disable local params syntax. One possible solution is to add an "enableLocalParams" parameter which, if set to false, will bypass looking for local params and go directly to constructing the parser, passing through the qstr unaltered. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators 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