Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 71778 invoked from network); 19 Jun 2010 15:04:47 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 19 Jun 2010 15:04:47 -0000 Received: (qmail 68877 invoked by uid 500); 19 Jun 2010 15:04:47 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 68807 invoked by uid 500); 19 Jun 2010 15:04:47 -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 68800 invoked by uid 99); 19 Jun 2010 15:04:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Jun 2010 15:04:46 +0000 X-ASF-Spam-Status: No, hits=-1532.1 required=10.0 tests=ALL_TRUSTED,AWL 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; Sat, 19 Jun 2010 15:04:44 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o5JF4Npp007870 for ; Sat, 19 Jun 2010 15:04:24 GMT Message-ID: <6546598.94601276959863920.JavaMail.jira@thor> Date: Sat, 19 Jun 2010 11:04:23 -0400 (EDT) From: "Dag H. Wanvik (JIRA)" To: derby-dev@db.apache.org Subject: [jira] Commented: (DERBY-4698) Simple query with HAVING clause crashes with NullPointerException In-Reply-To: <753512.73521276492336638.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/DERBY-4698?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12880492#action_12880492 ] Dag H. Wanvik commented on DERBY-4698: -------------------------------------- Committed to trunk as svn 956234. > Simple query with HAVING clause crashes with NullPointerException > ----------------------------------------------------------------- > > Key: DERBY-4698 > URL: https://issues.apache.org/jira/browse/DERBY-4698 > Project: Derby > Issue Type: Bug > Components: SQL > Affects Versions: 10.4.2.0, 10.5.3.0, 10.6.1.0 > Environment: Windows, Java 1.6 > Reporter: Matt Doran > Assignee: Dag H. Wanvik > Attachments: derby-4698-1.diff, derby-4698-1.stat, derby-4698-2.diff, derby-4698-2.stat, derby-crash-10.4.2.0.log, derby-crash-10.5.3.0.log, derby-crash-10.6.1.0.log, derby.zip > > > Running a simple SQL query containing a having clause causes a NullPointerException. I originally encountered this in 10.4.2.0, but have also reproduces this in 10.5.3.0 and the latest 10.6.1.0. I raised this on the mailing list too, and Knut said it also fails on trunk - see http://thread.gmane.org/gmane.comp.apache.db.derby.user/12782 > The query (created throw Hibernate) that causes the crash is: > SELECT user0_.user_id AS col_0_0_, > SUM(account2_.balance) AS col_1_0_ > FROM tbl_user user0_ > INNER JOIN tbl_user_account accountlin1_ > ON user0_.user_id = accountlin1_.user_id > INNER JOIN tbl_account account2_ > ON accountlin1_.account_id = account2_.account_id > WHERE user0_.deleted = 'N' > AND ( account2_.account_type IN ( 'USER-01', 'USER' ) ) > GROUP BY user0_.user_id > HAVING SUM(account2_.balance) >= 100.0 > However I simplified it to the following and still caused a crash (though in 10.4.2.0 I found that without the "where" clause is didn't crash but returned no results when it should have). > SELECT u.user_id, > SUM(a.balance) > FROM tbl_user u > INNER JOIN tbl_user_account al > ON u.user_id = al.user_id > INNER JOIN tbl_account a > ON al.account_id = a.account_id > GROUP BY u.user_id > HAVING sum(a.balance) >= 10.0 > The derby log showed the following stace trace for 10.6.1.0: > 2010-06-14 04:59:24.942 GMT Thread[main,5,main] (XID = 5824013), (SESSIONID = 1), (DATABASE = C:\Development\pc-ng-branch\server\working\data\internal/derby), (DRDAID = null), Failed Statement is: SELECT u.user_id user_id, > SUM(a.balance) acct_sum > FROM tbl_user u > INNER JOIN tbl_user_account al > ON u.user_id = al.user_id > INNER JOIN tbl_account a > ON al.account_id = a.account_id > GROUP BY u.user_id > HAVING sum(a.balance) >= 1.0 > java.lang.NullPointerException > at org.apache.derby.impl.sql.compile.ColumnReference.remapColumnReferencesToExpressions(Unknown Source) > at org.apache.derby.impl.sql.compile.AggregateNode.getNewExpressionResultColumn(Unknown Source) > at org.apache.derby.impl.sql.compile.GroupByNode.addAggregateColumns(Unknown Source) > at org.apache.derby.impl.sql.compile.GroupByNode.addNewColumnsForAggregation(Unknown Source) > at org.apache.derby.impl.sql.compile.GroupByNode.addAggregates(Unknown Source) > at org.apache.derby.impl.sql.compile.GroupByNode.init(Unknown Source) > at org.apache.derby.iapi.sql.compile.NodeFactory.getNode(Unknown Source) > at org.apache.derby.impl.sql.compile.SelectNode.genProjectRestrict(Unknown Source) > at org.apache.derby.impl.sql.compile.SelectNode.modifyAccessPaths(Unknown Source) > at org.apache.derby.impl.sql.compile.DMLStatementNode.optimizeStatement(Unknown Source) > at org.apache.derby.impl.sql.compile.CursorNode.optimizeStatement(Unknown Source) > at org.apache.derby.impl.sql.GenericStatement.prepMinion(Unknown Source) > at org.apache.derby.impl.sql.GenericStatement.prepare(Unknown Source) > at org.apache.derby.impl.sql.conn.GenericLanguageConnectionContext.prepareInternalStatement(Unknown Source) > at org.apache.derby.impl.jdbc.EmbedStatement.execute(Unknown Source) > at org.apache.derby.impl.jdbc.EmbedStatement.execute(Unknown Source) > at org.apache.derby.impl.tools.ij.ij.executeImmediate(Unknown Source) > at org.apache.derby.impl.tools.ij.utilMain.doCatch(Unknown Source) > at org.apache.derby.impl.tools.ij.utilMain.runScriptGuts(Unknown Source) > at org.apache.derby.impl.tools.ij.utilMain.go(Unknown Source) > at org.apache.derby.impl.tools.ij.Main.go(Unknown Source) > at org.apache.derby.impl.tools.ij.Main.mainCore(Unknown Source) > at org.apache.derby.impl.tools.ij.Main.main(Unknown Source) > at org.apache.derby.tools.ij.main(Unknown Source) > Cleanup action completed -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.