From derby-commits-return-10926-apmail-db-derby-commits-archive=db.apache.org@db.apache.org Tue Nov 04 10:46:20 2008 Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 20411 invoked from network); 4 Nov 2008 10:46:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Nov 2008 10:46:20 -0000 Received: (qmail 47930 invoked by uid 500); 4 Nov 2008 10:46:26 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 47905 invoked by uid 500); 4 Nov 2008 10:46:26 -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 47896 invoked by uid 99); 4 Nov 2008 10:46:26 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Nov 2008 02:46:26 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Nov 2008 10:45:17 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E947A23888F1; Tue, 4 Nov 2008 02:45:58 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r711221 - /db/derby/code/branches/10.4/java/testing/org/apache/derby/impl/jdbc/UTF8ReaderTest.java Date: Tue, 04 Nov 2008 10:45:58 -0000 To: derby-commits@db.apache.org From: kristwaa@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081104104558.E947A23888F1@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: kristwaa Date: Tue Nov 4 02:45:58 2008 New Revision: 711221 URL: http://svn.apache.org/viewvc?rev=711221&view=rev Log: DERBY-3825: Fixed compilation errors in package-private tests on the 10.4 branch. Patch file: n/a Modified: db/derby/code/branches/10.4/java/testing/org/apache/derby/impl/jdbc/UTF8ReaderTest.java Modified: db/derby/code/branches/10.4/java/testing/org/apache/derby/impl/jdbc/UTF8ReaderTest.java URL: http://svn.apache.org/viewvc/db/derby/code/branches/10.4/java/testing/org/apache/derby/impl/jdbc/UTF8ReaderTest.java?rev=711221&r1=711220&r2=711221&view=diff ============================================================================== --- db/derby/code/branches/10.4/java/testing/org/apache/derby/impl/jdbc/UTF8ReaderTest.java (original) +++ db/derby/code/branches/10.4/java/testing/org/apache/derby/impl/jdbc/UTF8ReaderTest.java Tue Nov 4 02:45:58 2008 @@ -54,7 +54,7 @@ */ public void testRepositioningSimple() throws IOException, SQLException, StandardException { - setAutoCommit(false); + getConnection().setAutoCommit(false); Statement stmt = createStatement(); ResultSet rs = stmt.executeQuery( "select * from Utf8ReaderTest where id = 101"); @@ -85,7 +85,7 @@ */ public void testRepositioningWithinBuffer() throws IOException, SQLException, StandardException { - setAutoCommit(false); + getConnection().setAutoCommit(false); Statement stmt = createStatement(); ResultSet rs = stmt.executeQuery( "select * from Utf8ReaderTest where id = 100"); @@ -123,7 +123,7 @@ */ public void testRepositioningWithinBufferRealText() throws IOException, SQLException, StandardException { - setAutoCommit(false); + getConnection().setAutoCommit(false); Statement stmt = createStatement(); ResultSet rs = stmt.executeQuery( // See insertTestData