Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 89297 invoked from network); 27 Aug 2009 11:54:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 27 Aug 2009 11:54:46 -0000 Received: (qmail 6558 invoked by uid 500); 27 Aug 2009 11:54:46 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 6511 invoked by uid 500); 27 Aug 2009 11:54:46 -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 6502 invoked by uid 99); 27 Aug 2009 11:54:45 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Aug 2009 11:54:45 +0000 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; Thu, 27 Aug 2009 11:54:42 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A6F3323888CB; Thu, 27 Aug 2009 11:54:21 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r808379 - /db/derby/code/branches/10.5/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/UnsupportedVetter.java Date: Thu, 27 Aug 2009 11:54:21 -0000 To: derby-commits@db.apache.org From: kristwaa@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090827115421.A6F3323888CB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: kristwaa Date: Thu Aug 27 11:54:21 2009 New Revision: 808379 URL: http://svn.apache.org/viewvc?rev=808379&view=rev Log: DERBY-4336: Remove Blob and Clob interface methods from the list of unsupported methods in UnsupportedVetter. Merged change from trunk (revision 800799). Modified: db/derby/code/branches/10.5/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/UnsupportedVetter.java Modified: db/derby/code/branches/10.5/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/UnsupportedVetter.java URL: http://svn.apache.org/viewvc/db/derby/code/branches/10.5/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/UnsupportedVetter.java?rev=808379&r1=808378&r2=808379&view=diff ============================================================================== --- db/derby/code/branches/10.5/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/UnsupportedVetter.java (original) +++ db/derby/code/branches/10.5/java/testing/org/apache/derbyTesting/functionTests/tests/jdbc4/UnsupportedVetter.java Thu Aug 27 11:54:21 2009 @@ -240,17 +240,8 @@ // JDBC SPEC. HOWEVER, DERBY DOES NOT IMPLEMENT THEM IN ONE // OR THE OTHER OF OUR CLIENTS. // - new FD( "updateBlob", new Class[] { int.class, Blob.class } ), - new FD( "updateBlob", new Class[] { String.class, Blob.class } ), - new FD( "updateBlob", new Class[] { int.class, InputStream.class ,long.class } ), - new FD( "updateBlob", new Class[] { String.class, InputStream.class ,long.class } ), - new FD( "updateClob", new Class[] { int.class, Clob.class } ), - new FD( "updateClob", new Class[] { String.class, Clob.class } ), - new FD( "updateClob", new Class[] { int.class, Reader.class ,long.class } ), - new FD( "updateClob", new Class[] { String.class, Reader.class ,long.class } ), new FD( "updateNClob",new Class[] { int.class,Reader.class,long.class}), new FD( "updateNClob",new Class[] { String.class,Reader.class,long.class}), - // // According to the JDBC4 spec and javadoc, the following @@ -301,39 +292,6 @@ // all of its methods. // - new Exclusions - ( - // - // THE FOLLOWING METHODS ARE MANDATORY ACCORDING TO THE - // JDBC SPEC. HOWEVER, DERBY DOES NOT IMPLEMENT THEM IN ONE - // OR THE OTHER OF OUR CLIENTS. - // - java.sql.Blob.class, - new MD[] - { - new FD( "getBinaryStream", new Class[] { long.class, long.class } ), - new FD( "setBinaryStream", new Class[] { long.class } ), - new FD( "setBytes", new Class[] { long.class, byte[].class } ), - new FD( "setBytes", new Class[] { long.class, byte[].class, int.class, int.class } ), - new FD( "truncate", new Class[] { long.class } ) - } ), - new Exclusions - ( - // - // THE FOLLOWING METHODS ARE MANDATORY ACCORDING TO THE - // JDBC SPEC. HOWEVER, DERBY DOES NOT IMPLEMENT THEM IN ONE - // OR THE OTHER OF OUR CLIENTS. - // - java.sql.Clob.class, - new MD[] - { - new FD( "getCharacterStream", new Class[] { long.class, long.class } ), - new FD( "setAsciiStream", new Class[] { long.class } ), - new FD( "setCharacterStream", new Class[] { long.class } ), - new FD( "setString", new Class[] { long.class, String.class } ), - new FD( "setString", new Class[] { long.class, String.class, int.class, int.class } ), - new FD( "truncate", new Class[] { long.class } ) - } ) }; //