Return-Path: Delivered-To: apmail-lucene-dev-archive@www.apache.org Received: (qmail 98491 invoked from network); 24 Jun 2010 18:04:15 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 24 Jun 2010 18:04:15 -0000 Received: (qmail 42945 invoked by uid 500); 24 Jun 2010 18:04:14 -0000 Delivered-To: apmail-lucene-dev-archive@lucene.apache.org Received: (qmail 42708 invoked by uid 500); 24 Jun 2010 18:04: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 42699 invoked by uid 99); 24 Jun 2010 18:04:13 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Jun 2010 18:04:13 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Jun 2010 18:04:11 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o5OI3nxF017899 for ; Thu, 24 Jun 2010 18:03:50 GMT Message-ID: <22405136.42901277402629797.JavaMail.jira@thor> Date: Thu, 24 Jun 2010 14:03:49 -0400 (EDT) From: "Michael McCandless (JIRA)" To: dev@lucene.apache.org Subject: [jira] Commented: (LUCENE-2514) Change Term to use bytes In-Reply-To: <5843276.41171277397049817.JavaMail.jira@thor> 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/LUCENE-2514?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12882252#action_12882252 ] Michael McCandless commented on LUCENE-2514: -------------------------------------------- Ahh sorry I do indeed seek to an unpaired high surrogate -- easy to fix (pair it up w/ minimum low surrogate). But, there's another problem, which is that the pre-flex codec uses Term.compareTo, and it needs that to be based on UTF16. We can just fix the preflex codec to use its own (UTF8inUTF16order) comparator. I *think* once we fix those two the test should pass again (crossing fingers...). > Change Term to use bytes > ------------------------ > > Key: LUCENE-2514 > URL: https://issues.apache.org/jira/browse/LUCENE-2514 > Project: Lucene - Java > Issue Type: Task > Components: Search > Affects Versions: 4.0 > Reporter: Robert Muir > Attachments: LUCENE-2514.patch, LUCENE-2514.patch > > > in LUCENE-2426, the sort order was changed to codepoint order. > unfortunately, Term is still using string internally, and more importantly its compareTo() uses the wrong order [utf-16]. > So MultiTermQuery, etc (especially its priority queues) are currently wrong. > By changing Term to use bytes, we can also support terms encoded as bytes such as numerics, instead of using > strange string encodings. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org For additional commands, e-mail: dev-help@lucene.apache.org