
|
If you were logged in you would be able to see more operations.
|
|
|
|
Original Estimate:
|
Unknown
|
Remaining Estimate:
|
Unknown
|
Time Spent:
|
Unknown
|
|
|
Upgrade HSQLDB from 1.8.0.2 to 1.8.0.8 to match version used upstream and shuipped with Linux systems.
Requires a small fix to a testcase:
org.jboss.test.cmp2.idxandusersql.test.IdxAndUsersqlUnitTestCase.testCMRmn2
Here is the patch:
Heiko
Index: .
===================================================================
--- . (revision 65226)
+++ . (working copy)
@@ -242,7 +242,7 @@
String iName = rs.getString(6); // name of index
// Ignore indices that are autogenerated for PKs
- if (cName.equals(column) && !iName.startsWith("PK_IDX"))
+ if (cName.equals(column) && !iName.startsWith("PK_IDX") && !iName.startsWith("SYS_IDX"))
{
found = true;
}
|
|
Description
|
Upgrade HSQLDB from 1.8.0.2 to 1.8.0.8 to match version used upstream and shuipped with Linux systems.
Requires a small fix to a testcase:
org.jboss.test.cmp2.idxandusersql.test.IdxAndUsersqlUnitTestCase.testCMRmn2
Here is the patch:
Heiko
Index: .
===================================================================
--- . (revision 65226)
+++ . (working copy)
@@ -242,7 +242,7 @@
String iName = rs.getString(6); // name of index
// Ignore indices that are autogenerated for PKs
- if (cName.equals(column) && !iName.startsWith("PK_IDX"))
+ if (cName.equals(column) && !iName.startsWith("PK_IDX") && !iName.startsWith("SYS_IDX"))
{
found = true;
}
|
Show » |
|
|
Passing back to you. Following patches applied to avoid hsqldb 1.8.0.4+ shutdown deadlock bug:
Index: /home/bes/dev/jboss/JBPAPP_4_2/ejb3/src/test/org/jboss/ejb3/test/DBSetup.java
===================================================================
--- /home/bes/dev/jboss/JBPAPP_4_2/ejb3/src/test/org/jboss/ejb3/test/DBSetup.java (revision 66828)
+++ /home/bes/dev/jboss/JBPAPP_4_2/ejb3/src/test/org/jboss/ejb3/test/DBSetup.java (working copy)
@@ -126,7 +126,7 @@
"-port",
String.valueOf(1701),
"-silent",
- "false",
+ "true",
"-trace",
"false",
"-no_system_exit",
Index: /home/bes/dev/jboss/JBPAPP_4_2/testsuite/src/main/org/jboss/test/testbeancluster/test/DBSetup.java
===================================================================
--- /home/bes/dev/jboss/JBPAPP_4_2/testsuite/src/main/org/jboss/test/testbeancluster/test/DBSetup.java (revision 66828)
+++ /home/bes/dev/jboss/JBPAPP_4_2/testsuite/src/main/org/jboss/test/testbeancluster/test/DBSetup.java (working copy)
@@ -125,7 +125,7 @@
"-port",
String.valueOf(1701),
"-silent",
- "false",
+ "true",
"-trace",
"false",
"-no_system_exit",