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/10/30 11:12:21 UTC

svn commit: r709132 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/memory/MultiByteClobTest.java

Author: kristwaa
Date: Thu Oct 30 03:12:21 2008
New Revision: 709132

URL: http://svn.apache.org/viewvc?rev=709132&view=rev
Log:
DERBY-3818: client Insert/retrieval of 18MB Clob is extremely slow in MultiByteClobTest.
Re-enabled client tests, as the performance problems seem to have been fixed (see issues DERBY-3825 and DERBY-3769).
Patch file: derby-3818-1a-enable_client_test.diff

Modified:
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/memory/MultiByteClobTest.java

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/memory/MultiByteClobTest.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/memory/MultiByteClobTest.java?rev=709132&r1=709131&r2=709132&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/memory/MultiByteClobTest.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/memory/MultiByteClobTest.java Thu Oct 30 03:12:21 2008
@@ -139,9 +139,8 @@
     public static Test suite() {
         TestSuite suite = new TestSuite("MultiByteClobTest");
         suite.addTest(baseSuite("MultiByteClobTest:embedded"));
-        // Disable for client for now. Client clob is inordinately slow.
-        //suite.addTest(TestConfiguration
-        //    .clientServerDecorator(baseSuite("MultiByteClobTest:client")));
+        suite.addTest(TestConfiguration
+            .clientServerDecorator(baseSuite("MultiByteClobTest:client")));
         Properties p = new Properties();
         // use small pageCacheSize so we don't run out of memory on the insert.
         p.setProperty("derby.storage.pageCacheSize", "100");