Switch to nulls here, too, making migration work right for HSQLDB.
This commit is contained in:
@@ -1053,7 +1053,7 @@ public class DepotMarshaller<T extends PersistentRecord>
|
|||||||
public TableMetaData (DatabaseMetaData meta, String tableName)
|
public TableMetaData (DatabaseMetaData meta, String tableName)
|
||||||
throws SQLException
|
throws SQLException
|
||||||
{
|
{
|
||||||
tableExists = meta.getTables("", "", tableName, null).next();
|
tableExists = meta.getTables(null, null, tableName, null).next();
|
||||||
if (!tableExists) {
|
if (!tableExists) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user