Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 84334 invoked from network); 2 Oct 2006 21:25:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 2 Oct 2006 21:25:47 -0000 Received: (qmail 78241 invoked by uid 500); 2 Oct 2006 21:25:46 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 78209 invoked by uid 500); 2 Oct 2006 21:25:46 -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 78200 invoked by uid 99); 2 Oct 2006 21:25:46 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Oct 2006 14:25:46 -0700 X-ASF-Spam-Status: No, hits=0.0 required=5.0 tests= Received: from [209.237.227.198] ([209.237.227.198:39791] helo=brutus.apache.org) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id A4/A8-24395-0D381254 for ; Mon, 02 Oct 2006 14:25:36 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 9DF917142A7 for ; Mon, 2 Oct 2006 14:25:20 -0700 (PDT) Message-ID: <11154929.1159824320635.JavaMail.root@brutus> Date: Mon, 2 Oct 2006 14:25:20 -0700 (PDT) From: "Deepa Remesh (JIRA)" To: derby-dev@db.apache.org Subject: [jira] Commented: (DERBY-1849) Tests lang/grantRevokeDDL.sql and lang/grantRevokeDDL2.sql fails on IBM WCTME 5.7 Foundation (jdkJ2ME Foundation Specification v1.0) In-Reply-To: <22219542.1158196282302.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/DERBY-1849?page=comments#action_12439320 ] Deepa Remesh commented on DERBY-1849: ------------------------------------- Myrna said "create Trigger fails with foundation because something in the Derby source code accessed in this statement finds a call to BigDecimal, which we should not be doing to support JSR169. So this is a problem. " Reference manual states triggers are not supported with JSR169. See: http://db.apache.org/derby/docs/dev/ref/rrefjdbcjsr169.html So this may be a known limitation. > Tests lang/grantRevokeDDL.sql and lang/grantRevokeDDL2.sql fails on IBM WCTME 5.7 Foundation (jdkJ2ME Foundation Specification v1.0) > ------------------------------------------------------------------------------------------------------------------------------------ > > Key: DERBY-1849 > URL: http://issues.apache.org/jira/browse/DERBY-1849 > Project: Derby > Issue Type: Test > Components: Test > Affects Versions: 10.3.0.0 > Environment: Windows > Reporter: Rajesh Kartha > Attachments: grantRevokeDDL.diff, grantRevokeDDL2.diff > > > The diff for grantRevokeDDL.sql is big, hence attaching. > For lang/grantRevokeDDL2.sql the diff is as follows: > ********* Diff file derbyall/derbylang/grantRevokeDDL2.diff > *** Start: grantRevokeDDL2 jdkJ2ME Foundation Specification v1.0 derbyall:derbylang 2006-09-10 11:42:23 *** > 0a1 > > java.lang.reflect.InvocationTargetException: java.lang.NullPointerException > 99 del > < ERROR: Failed with SQLSTATE 38001 > 99a100 > > ERROR: Failed with SQLSTATE XJ001 > 119 del > < ERROR: Failed with SQLSTATE 38002 > 119a120 > > ERROR: Failed with SQLSTATE XJ001 > 139 del > < ERROR: Failed with SQLSTATE 38002 > 139a140 > > ERROR: Failed with SQLSTATE XJ001 > 158 del > < 1 row inserted/updated/deleted > 158a159,160 > > ERROR: Failed with SQLSTATE 38000 > > ERROR: Failed with SQLSTATE XJ001 > 163 del > < 0 rows selected > 163a165,166 > > 4 |XYZ > > 1 row selected > 168a172,182 > > ERROR: Failed with SQLSTATE 28508 > > ij(USER2)> set connection user1; > > ij(USER1)> create trigger revoke_select_trig AFTER delete on t1 > > for each STATEMENT mode db2sql call revoke_select_proc1(); > > 0 rows inserted/updated/deleted > > ij(USER1)> -- should fail > > delete from t1 where i = 5; > > ERROR: Failed with SQLSTATE 38000 > > ERROR: Failed with SQLSTATE XJ001 > > ij(USER1)> -- check delete failed > > select * from t1 where i = 5; > 171,184d184 > < 1 |XYZ > < 1 row selected > < ij(USER2)> set connection user1; > < ij(USER1)> create trigger revoke_select_trig AFTER delete on t1 > < for each STATEMENT mode db2sql call revoke_select_proc1(); > < 0 rows inserted/updated/deleted > < ij(USER1)> -- should fail > < delete from t1 where i = 5; > < ERROR: Failed with SQLSTATE 38000 > < ERROR: Failed with SQLSTATE 38001 > < ij(USER1)> -- check delete failed > < select * from t1 where i = 5; > < I |B > < --------------------------- > 191a192,202 > > ERROR: Failed with SQLSTATE 28508 > > ij(USER2)> set connection user1; > > ij(USER1)> create trigger revoke_select_trig AFTER delete on t1 > > for each STATEMENT mode db2sql call revoke_select_proc2(); > > 0 rows inserted/updated/deleted > > ij(USER1)> -- should fail > > delete from t1 where i = 6; > > ERROR: Failed with SQLSTATE 38000 > > ERROR: Failed with SQLSTATE XJ001 > > ij(USER1)> -- check delete failed > > select * from t1 where i = 6; > 194,207d204 > < 1 |XYZ > < 1 row selected > < ij(USER2)> set connection user1; > < ij(USER1)> create trigger revoke_select_trig AFTER delete on t1 > < for each STATEMENT mode db2sql call revoke_select_proc2(); > < 0 rows inserted/updated/deleted > < ij(USER1)> -- should fail > < delete from t1 where i = 6; > < ERROR: Failed with SQLSTATE 38000 > < ERROR: Failed with SQLSTATE 38002 > < ij(USER1)> -- check delete failed > < select * from t1 where i = 6; > < I |B > < --------------------------- > 214a212,222 > > ERROR: Failed with SQLSTATE 28508 > > ij(USER2)> set connection user1; > > ij(USER1)> create trigger revoke_select_trig AFTER delete on t1 > > for each STATEMENT mode db2sql call revoke_select_proc3(); > > 0 rows inserted/updated/deleted > > ij(USER1)> -- should fail > > delete from t1 where i = 7; > > ERROR: Failed with SQLSTATE 38000 > > ERROR: Failed with SQLSTATE XJ001 > > ij(USER1)> -- check delete failed > > select * from t1 where i = 7; > 217,230d224 > < 1 |XYZ > < 1 row selected > < ij(USER2)> set connection user1; > < ij(USER1)> create trigger revoke_select_trig AFTER delete on t1 > < for each STATEMENT mode db2sql call revoke_select_proc3(); > < 0 rows inserted/updated/deleted > < ij(USER1)> -- should fail > < delete from t1 where i = 7; > < ERROR: Failed with SQLSTATE 38000 > < ERROR: Failed with SQLSTATE 38002 > < ij(USER1)> -- check delete failed > < select * from t1 where i = 7; > < I |B > < --------------------------- > 237a232,242 > > ERROR: Failed with SQLSTATE 28508 > > ij(USER2)> set connection user1; > > ij(USER1)> create trigger revoke_select_trig AFTER delete on t1 > > for each STATEMENT mode db2sql call revoke_select_proc4(); > > 0 rows inserted/updated/deleted > > ij(USER1)> -- ok > > delete from t1 where i = 8; > > ERROR: Failed with SQLSTATE 38000 > > ERROR: Failed with SQLSTATE XJ001 > > ij(USER1)> -- check delete > > select * from t1 where i = 8; > 240 del > < 1 |XYZ > 240a245 > > 8 |XYZ > 241a247,252 > > ij(USER1)> drop trigger revoke_select_trig; > > 0 rows inserted/updated/deleted > > ij(USER1)> set connection user2; > > ij(USER2)> -- should fail > > select * from user1.t1 where i = 1; > > ERROR: Failed with SQLSTATE 28508 > 243,260d253 > < ij(USER1)> create trigger revoke_select_trig AFTER delete on t1 > < for each STATEMENT mode db2sql call revoke_select_proc4(); > < 0 rows inserted/updated/deleted > < ij(USER1)> -- ok > < delete from t1 where i = 8; > < 1 row inserted/updated/deleted > < ij(USER1)> -- check delete > < select * from t1 where i = 8; > < I |B > < --------------------------- > < 0 rows selected > < ij(USER1)> drop trigger revoke_select_trig; > < 0 rows inserted/updated/deleted > < ij(USER1)> set connection user2; > < ij(USER2)> -- should fail > < select * from user1.t1 where i = 1; > < ERROR: Failed with SQLSTATE 28508 > < ij(USER2)> set connection user1; > Test Failed. > *** End: grantRevokeDDL2 jdkJ2ME Foundation Specification v1.0 derbyall:derbylang 2006-09-10 11:42:33 *** -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira