Return-Path: X-Original-To: apmail-db-derby-commits-archive@www.apache.org Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7BCF3D680 for ; Tue, 28 May 2013 11:38:48 +0000 (UTC) Received: (qmail 94235 invoked by uid 500); 28 May 2013 11:38:48 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 94161 invoked by uid 500); 28 May 2013 11:38:47 -0000 Mailing-List: contact derby-commits-help@db.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: "Derby Development" List-Id: Delivered-To: mailing list derby-commits@db.apache.org Received: (qmail 94146 invoked by uid 99); 28 May 2013 11:38:47 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 May 2013 11:38:47 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 May 2013 11:38:44 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 279002388900; Tue, 28 May 2013 11:38:24 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1486880 - in /db/derby/code/branches/10.10: ./ java/engine/org/apache/derby/iapi/sql/dictionary/ConstraintDescriptor.java Date: Tue, 28 May 2013 11:38:24 -0000 To: derby-commits@db.apache.org From: dag@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130528113824.279002388900@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dag Date: Tue May 28 11:38:23 2013 New Revision: 1486880 URL: http://svn.apache.org/r1486880 Log: DERBY-6148 Wrong sort elimination when using permuted sort order Backed out part of the patch (a line with improved compiler tree dump - only useful for debugging) since it didn't compile on source level 1.4 Modified: db/derby/code/branches/10.10/ (props changed) db/derby/code/branches/10.10/java/engine/org/apache/derby/iapi/sql/dictionary/ConstraintDescriptor.java Propchange: db/derby/code/branches/10.10/ ------------------------------------------------------------------------------ Merged /db/derby/code/branches/10.8:r1486867 Modified: db/derby/code/branches/10.10/java/engine/org/apache/derby/iapi/sql/dictionary/ConstraintDescriptor.java URL: http://svn.apache.org/viewvc/db/derby/code/branches/10.10/java/engine/org/apache/derby/iapi/sql/dictionary/ConstraintDescriptor.java?rev=1486880&r1=1486879&r2=1486880&view=diff ============================================================================== --- db/derby/code/branches/10.10/java/engine/org/apache/derby/iapi/sql/dictionary/ConstraintDescriptor.java (original) +++ db/derby/code/branches/10.10/java/engine/org/apache/derby/iapi/sql/dictionary/ConstraintDescriptor.java Tue May 28 11:38:23 2013 @@ -21,7 +21,6 @@ package org.apache.derby.iapi.sql.dictionary; -import java.util.Arrays; import org.apache.derby.iapi.error.StandardException; import org.apache.derby.iapi.sql.depend.Provider; @@ -456,8 +455,7 @@ public abstract class ConstraintDescript "constraintId: " + constraintId + "\n" + "deferrable: " + deferrable + "\n" + "initiallyDeferred: " + initiallyDeferred + "\n" + - "referencedColumns: " + - Arrays.toString(referencedColumns) + "\n" + + "referencedColumns: " + referencedColumns + "\n" + "schemaDesc: " + schemaDesc + "\n" ; }