Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 8829 invoked from network); 21 Jun 2006 03:21:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 21 Jun 2006 03:21:52 -0000 Received: (qmail 88783 invoked by uid 500); 21 Jun 2006 03:21:52 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 88748 invoked by uid 500); 21 Jun 2006 03:21:51 -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 88737 invoked by uid 99); 21 Jun 2006 03:21:51 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jun 2006 20:21:51 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jun 2006 20:21:51 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 7371C1A983A; Tue, 20 Jun 2006 20:21:30 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r415886 - in /db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests: master/JitTest.out tests/lang/JitTest.java Date: Wed, 21 Jun 2006 03:21:29 -0000 To: derby-commits@db.apache.org From: kmarsden@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060621032130.7371C1A983A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: kmarsden Date: Tue Jun 20 20:21:29 2006 New Revision: 415886 URL: http://svn.apache.org/viewvc?rev=415886&view=rev Log: DERBY-1420 - Make JitTest.java independent of Derby release Contributed by Mamta Satoor Modified: db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/JitTest.out db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/tests/lang/JitTest.java Modified: db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/JitTest.out URL: http://svn.apache.org/viewvc/db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/JitTest.out?rev=415886&r1=415885&r2=415886&view=diff ============================================================================== --- db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/JitTest.out (original) +++ db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/master/JitTest.out Tue Jun 20 20:21:29 2006 @@ -1,6 +1,4 @@ -10.1.2.5 -Apache Derby -Apache Derby Embedded JDBC Driver +Start JitTest Drop all tables in APP schema Create tables until we get a wrong Start with value PASS: All 200 tables created without problems Modified: db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/tests/lang/JitTest.java URL: http://svn.apache.org/viewvc/db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/tests/lang/JitTest.java?rev=415886&r1=415885&r2=415886&view=diff ============================================================================== --- db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/tests/lang/JitTest.java (original) +++ db/derby/code/branches/10.1/java/testing/org/apache/derbyTesting/functionTests/tests/lang/JitTest.java Tue Jun 20 20:21:29 2006 @@ -46,6 +46,7 @@ ij.getPropertyArg(args); Connection conn = ij.startJBMS(); + System.out.println("Start JitTest"); //add tests specific to a jit issue testDerby1327BadStartWithForAutoIncColumn(conn); conn.close(); @@ -69,10 +70,6 @@ conn.setAutoCommit(false); Statement stmt = null; - DatabaseMetaData md = conn.getMetaData() ; - System.out.println(md.getDatabaseProductVersion()); - System.out.println(md.getDatabaseProductName()); - System.out.println(md.getDriverName()); dropAllAppTables(conn); System.out.println("Create tables until we get a wrong Start with value"); stmt = conn.createStatement();