Return-Path: Delivered-To: apmail-lucene-java-user-archive@www.apache.org Received: (qmail 48118 invoked from network); 21 Aug 2007 06:35:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 21 Aug 2007 06:35:50 -0000 Received: (qmail 49442 invoked by uid 500); 21 Aug 2007 06:35:41 -0000 Delivered-To: apmail-lucene-java-user-archive@lucene.apache.org Received: (qmail 49396 invoked by uid 500); 21 Aug 2007 06:35:41 -0000 Mailing-List: contact java-user-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: java-user@lucene.apache.org Delivered-To: mailing list java-user@lucene.apache.org Received: (qmail 49385 invoked by uid 99); 21 Aug 2007 06:35:41 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Aug 2007 23:35:41 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of sonusr@gmail.com designates 209.85.198.185 as permitted sender) Received: from [209.85.198.185] (HELO rv-out-0910.google.com) (209.85.198.185) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Aug 2007 06:35:41 +0000 Received: by rv-out-0910.google.com with SMTP id k20so1001057rvb for ; Mon, 20 Aug 2007 23:35:21 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; b=K+uxfOC/4Ezvd+AWzrtTnMFGCfyFLgteG5Cd/t1OxZzUCTns88kba++V5W/t7YmamXiacynGLxYOtyLQPnH3lCFwvuqHMgtJY2NkRn0VneYXIj0OPVx+q1qDNDtHceebF4Hf3SU+WJ8t115uYj/vzu/z3CvvFZ1htFNz1cQbSGA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=uBxGoyE2t6x/0eZc9EEbrLt13/PiKNKSKo/akcO93oKySyLVLD6HtSynhuJEg2VZOSQQIYEKhP7VAySiBgafCj4kQtnAkBITkro/FPW8L8cBiF5HvZhvEgg7cmbDbs2FNSYAheU9LCJaorxqfePUXMKyBvdDthaZUH/LyVk2/oc= Received: by 10.141.5.3 with SMTP id h3mr3189129rvi.1187678120969; Mon, 20 Aug 2007 23:35:20 -0700 (PDT) Received: by 10.141.146.17 with HTTP; Mon, 20 Aug 2007 23:35:20 -0700 (PDT) Message-ID: Date: Tue, 21 Aug 2007 12:05:20 +0530 From: "Sonu SR" To: java-user@lucene.apache.org Subject: Problem In wild card search with NOT MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_13141_19672950.1187678120956" X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_13141_19672950.1187678120956 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi All, I have problem when searching terms with wild card and NOT. Simple Example is, The query TITLE:(test1234 OR test567) return two results, the query TITLE:(test1234 OR test567) AND NOT TITLE:(test1234) return one result as my expectation, the query TITLE:(test1234 OR test567) AND NOT TITLE:(test1234) return one result as my expectation, But the query TITLE:(test1234 OR test567) AND NOT TITLE:(test*) returns the two results (In normal i expect nothing will be returned). But the Query works correctly when giving as TITLE:(test1234 OR test567) AND NOT TITLE:(test1234 OR test567). ie:- returns nothing Is it a bug in lucene? Thanks, Sonu ------=_Part_13141_19672950.1187678120956--