Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 5621 invoked from network); 26 Mar 2010 07:56:50 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 26 Mar 2010 07:56:50 -0000 Received: (qmail 91302 invoked by uid 500); 26 Mar 2010 07:56:50 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 91087 invoked by uid 500); 26 Mar 2010 07:56:49 -0000 Mailing-List: contact derby-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: Delivered-To: mailing list derby-dev@db.apache.org Received: (qmail 91079 invoked by uid 99); 26 Mar 2010 07:56:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Mar 2010 07:56:49 +0000 X-ASF-Spam-Status: No, hits=-1140.7 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Mar 2010 07:56:48 +0000 Received: from brutus.apache.org (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 40309234C4E9 for ; Fri, 26 Mar 2010 07:56:27 +0000 (UTC) Message-ID: <1652103099.504611269590187261.JavaMail.jira@brutus.apache.org> Date: Fri, 26 Mar 2010 07:56:27 +0000 (UTC) From: "Knut Anders Hatlen (JIRA)" To: derby-dev@db.apache.org Subject: [jira] Created: (DERBY-4600) Use ValueNodeList helper methods in CoalesceFunctionNode MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Use ValueNodeList helper methods in CoalesceFunctionNode -------------------------------------------------------- Key: DERBY-4600 URL: https://issues.apache.org/jira/browse/DERBY-4600 Project: Derby Issue Type: Improvement Components: SQL Affects Versions: 10.6.0.0 Reporter: Knut Anders Hatlen Priority: Minor CoalesceFunctionNode manually iterates over argumentsList (a ValueNodeList) in acceptChildren(), preprocess(), remapColumnReferencesToExpressions() and isEquivalent(). ValueNodeList has helper methods for the first three of those, and those helper methods should be used instead to simplify the code. There is no helper method for isEquivalent(), but since very similar code is also found in the isEquivalent() methods of BinaryListOperatorNode and ConditionalNode, we should add a new helper and use it in those classes too. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.