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 2008/01/31 13:03:25 UTC

svn commit: r617110 - /db/derby/code/trunk/java/client/org/apache/derby/client/am/stmtcache/StatementKeyFactory.java

Author: kristwaa
Date: Thu Jan 31 04:03:23 2008
New Revision: 617110

URL: http://svn.apache.org/viewvc?rev=617110&view=rev
Log:
DERBY-3324: JDBC statement cache implementation. Fixed missing argument reordering from 617099.
Patch file: derby-3324-3a_argument_reordering_additional.diff

Modified:
    db/derby/code/trunk/java/client/org/apache/derby/client/am/stmtcache/StatementKeyFactory.java

Modified: db/derby/code/trunk/java/client/org/apache/derby/client/am/stmtcache/StatementKeyFactory.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/client/org/apache/derby/client/am/stmtcache/StatementKeyFactory.java?rev=617110&r1=617109&r2=617110&view=diff
==============================================================================
--- db/derby/code/trunk/java/client/org/apache/derby/client/am/stmtcache/StatementKeyFactory.java (original)
+++ db/derby/code/trunk/java/client/org/apache/derby/client/am/stmtcache/StatementKeyFactory.java Thu Jan 31 04:03:23 2008
@@ -115,8 +115,8 @@
      */
     public static StatementKey newCallable(
             String sql, String schema, int holdability) {
-        return newCallable(sql, schema, holdability,
-                ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_READ_ONLY);
+        return newCallable(sql, schema, ResultSet.TYPE_FORWARD_ONLY,
+                ResultSet.CONCUR_READ_ONLY, holdability);
     }
 
     /**