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 fu...@apache.org on 2006/03/11 00:12:11 UTC

svn commit: r384946 - /db/derby/code/trunk/java/tools/org/apache/derby/impl/tools/ij/mtTestCase.java

Author: fuzzylogic
Date: Fri Mar 10 15:12:08 2006
New Revision: 384946

URL: http://svn.apache.org/viewcvs?rev=384946&view=rev
Log:
DERBY-956: prevent OutOfMemoryError on certain platforms caused by revision
370059

Committed for Deepa Remesh <dr...@gmail.com>

Modified:
    db/derby/code/trunk/java/tools/org/apache/derby/impl/tools/ij/mtTestCase.java

Modified: db/derby/code/trunk/java/tools/org/apache/derby/impl/tools/ij/mtTestCase.java
URL: http://svn.apache.org/viewcvs/db/derby/code/trunk/java/tools/org/apache/derby/impl/tools/ij/mtTestCase.java?rev=384946&r1=384945&r2=384946&view=diff
==============================================================================
--- db/derby/code/trunk/java/tools/org/apache/derby/impl/tools/ij/mtTestCase.java (original)
+++ db/derby/code/trunk/java/tools/org/apache/derby/impl/tools/ij/mtTestCase.java Fri Mar 10 15:12:08 2006
@@ -162,17 +162,17 @@
             if (("true").equalsIgnoreCase(p.getProperty("encryption"))) 
             {
                String encryptUrl = "dataEncryption=true;bootPassword=Thursday";
-               String dbUrl = p.getProperty("database");
+               String dbUrl = p.getProperty("ij.database");
                String encryptionAlgorithm = p.getProperty("encryptionAlgorithm");
                if (encryptionAlgorithm != null)
                {
                    p.setProperty(
-                       "database",
+                       "ij.database",
                        dbUrl + ";" + encryptUrl + ";" + encryptionAlgorithm);
                }
                else
                {
-                   p.setProperty("database",dbUrl + ";"+encryptUrl);
+                   p.setProperty("ij.database",dbUrl + ";"+encryptUrl);
                }
             }