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 2007/03/25 18:10:13 UTC

svn commit: r522292 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/unitTests/store/T_SortController.java

Author: kristwaa
Date: Sun Mar 25 09:10:13 2007
New Revision: 522292

URL: http://svn.apache.org/viewvc?view=rev&rev=522292
Log:
DERBY-2486: Fixed missing method-rename.

Modified:
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/unitTests/store/T_SortController.java

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/unitTests/store/T_SortController.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/unitTests/store/T_SortController.java?view=diff&rev=522292&r1=522291&r2=522292
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/unitTests/store/T_SortController.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/unitTests/store/T_SortController.java Sun Mar 25 09:10:13 2007
@@ -695,7 +695,7 @@
 		// Close the sort controller.  This makes the rows
 		// available to be retrieved.
         // It also means we are getting final sort statistics.
-        sort.close();
+        sort.completedInserts();
 
         // Test the SortInfo part of sort.
         SortInfo   sort_info = sort.getSortInfo();



Re: svn commit: r522292 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/unitTests/store/T_SortController.java

Posted by Daniel John Debrunner <dj...@apache.org>.
kristwaa@apache.org wrote:
> Author: kristwaa
> Date: Sun Mar 25 09:10:13 2007
> New Revision: 522292
> 
> URL: http://svn.apache.org/viewvc?view=rev&rev=522292
> Log:
> DERBY-2486: Fixed missing method-rename.

Thanks, I'd made the change but forgot to commit it.

Dan.