Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 92366 invoked from network); 31 Jul 2006 23:28:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 31 Jul 2006 23:28:40 -0000 Received: (qmail 11037 invoked by uid 500); 31 Jul 2006 23:28:39 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 10899 invoked by uid 500); 31 Jul 2006 23:28:39 -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 10890 invoked by uid 99); 31 Jul 2006 23:28:39 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 31 Jul 2006 16:28:39 -0700 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of mcintyre.a@gmail.com designates 66.249.92.171 as permitted sender) Received: from [66.249.92.171] (HELO ug-out-1314.google.com) (66.249.92.171) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 31 Jul 2006 16:28:38 -0700 Received: by ug-out-1314.google.com with SMTP id m2so1084880uge for ; Mon, 31 Jul 2006 16:28:15 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=I8PgJVZD2exeUER76jx80XJI8SWeHRt1nFq9L/HbQkYbY8WIoEq3kBwQbNUz85a3zj7316GgSSUrcAU/yy0TDEQFy7LIsxE2AmyyR6gH12A/207g9XAdBB4oLpCnHzpmD8/JUH3Vanez6Z/pbWBPjAya6wvVR4JjDJnQRTQizZ8= Received: by 10.66.222.9 with SMTP id u9mr233344ugg; Mon, 31 Jul 2006 16:28:15 -0700 (PDT) Received: by 10.66.255.4 with HTTP; Mon, 31 Jul 2006 16:28:14 -0700 (PDT) Message-ID: <54ac72d70607311628s760a1e07t2b6e81987959298@mail.gmail.com> Date: Mon, 31 Jul 2006 16:28:14 -0700 From: "Andrew McIntyre" To: derby-dev@db.apache.org Subject: Re: svn commit: r427293 - in /db/derby/code/trunk/java/tools/org/apache/derby/impl/tools/ij: Main.java mtTestCase.java utilMain.java utilMain14.java In-Reply-To: <44CE849B.4050608@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060731213524.8CE421A981A@eris.apache.org> <44CE849B.4050608@gmail.com> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 7/31/06, Army wrote: > > [javac] Compiling 2 source files to C:\p4clients\main_codeline\classes > [javac] > C:\p4clients\main_codeline\opensource\java\testing\org\apache\derbyTesting\functionTests\tests\lang\wisconsin.java:70: > > utilMain(int,org.apache.derby.iapi.tools.i18n.LocalizedOutput,java.util.Hashtable) > is not public in org.apache.derby.impl.tools.ij.utilMain; cannot be accessed > from outside package > [javac] utilInstance = new utilMain(1, out, (Hashtable)null); > [javac] ^ > [javac] 1 error > [javac] Compile failed; see the compiler error output for details. Interestingly, the wisconsin test is usign this internal class to set ij's input and output streams. Since that's exactly what the public ij.runScript() is for, the test should probably be rewritten to use the new public api. > I also noticed (somewhat by chance) that if I try to run ij using Sun jdk131 > with the latest codeline, I see the following: > > Exception in thread "main" java.lang.UnsupportedClassVersionError: > org/apache/derby/impl/tools/ij/Main14 (Unsupported major.minor version 48.0) I'll look into this. andrew