Switch to nulls here, too, making migration work right for HSQLDB.

This commit is contained in:
Par Winzell
2008-12-10 23:02:34 +00:00
parent b3cb1d6214
commit 44fd01cc2d
@@ -1053,7 +1053,7 @@ public class DepotMarshaller<T extends PersistentRecord>
public TableMetaData (DatabaseMetaData meta, String tableName)
throws SQLException
{
tableExists = meta.getTables("", "", tableName, null).next();
tableExists = meta.getTables(null, null, tableName, null).next();
if (!tableExists) {
return;
}