-
Task
-
Resolution: Done
-
Major
-
4.2.0.GA_CP01
-
None
-
Release Notes
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; }