Updates to work with HSQLDB 2.2.4.

We need the HsqldbLiaison fixes from samskivert 1.8-SNAPSHOT and we have to nix
some hardcoded bogosity in our own tests.
This commit is contained in:
Michael Bayne
2013-05-06 17:38:16 +00:00
parent 959dbacb53
commit a625c831ae
2 changed files with 3 additions and 4 deletions
+2 -2
View File
@@ -45,7 +45,7 @@
<dependency> <dependency>
<groupId>com.samskivert</groupId> <groupId>com.samskivert</groupId>
<artifactId>samskivert</artifactId> <artifactId>samskivert</artifactId>
<version>1.7</version> <version>1.8-SNAPSHOT</version>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
<dependency> <dependency>
@@ -76,7 +76,7 @@
<dependency> <dependency>
<groupId>org.hsqldb</groupId> <groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId> <artifactId>hsqldb</artifactId>
<version>2.0.0</version> <version>2.2.4</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
@@ -74,8 +74,7 @@ public class MigrationTest extends TestBase
"CREATE MEMORY TABLE PUBLIC.\"DepotSchemaVersion\"(" + "CREATE MEMORY TABLE PUBLIC.\"DepotSchemaVersion\"(" +
"\"persistentClass\" VARCHAR(255) NOT NULL PRIMARY KEY," + "\"persistentClass\" VARCHAR(255) NOT NULL PRIMARY KEY," +
"\"version\" INTEGER NOT NULL," + "\"version\" INTEGER NOT NULL," +
"\"migratingVersion\" INTEGER NOT NULL," + "\"migratingVersion\" INTEGER NOT NULL)",
"UNIQUE(\"persistentClass\"))",
"CREATE MEMORY TABLE PUBLIC.\"MigrationTest$PKMigrationRecord\"(" + "CREATE MEMORY TABLE PUBLIC.\"MigrationTest$PKMigrationRecord\"(" +
"\"id\" INTEGER DEFAULT 0 NOT NULL," + "\"id\" INTEGER DEFAULT 0 NOT NULL," +