You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by kr...@apache.org on 2009/01/13 13:49:26 UTC

svn commit: r734118 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/ClobTest.java

Author: kristwaa
Date: Tue Jan 13 04:49:11 2009
New Revision: 734118

URL: http://svn.apache.org/viewvc?rev=734118&view=rev
Log:
Removed creation of unsed statement.

Modified:
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/ClobTest.java

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/ClobTest.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/ClobTest.java?rev=734118&r1=734117&r2=734118&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/ClobTest.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/jdbcapi/ClobTest.java Tue Jan 13 04:49:11 2009
@@ -301,7 +301,6 @@
             throws IOException, SQLException {
         setAutoCommit(false);
         // Insert data, a medium sized Clob to store it as a stream.
-        Statement stmt = createStatement();
         PreparedStatement ps = prepareStatement(
                 "insert into ClobTestData values (?,?)");
         int initalSize = 128*1024;