From 44fd01cc2d002320a6275efb472d1af75b06ff7c Mon Sep 17 00:00:00 2001 From: Par Winzell Date: Wed, 10 Dec 2008 23:02:34 +0000 Subject: [PATCH] Switch to nulls here, too, making migration work right for HSQLDB. --- src/java/com/samskivert/depot/impl/DepotMarshaller.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/samskivert/depot/impl/DepotMarshaller.java b/src/java/com/samskivert/depot/impl/DepotMarshaller.java index 78fabdf..9eb78c7 100644 --- a/src/java/com/samskivert/depot/impl/DepotMarshaller.java +++ b/src/java/com/samskivert/depot/impl/DepotMarshaller.java @@ -1053,7 +1053,7 @@ public class DepotMarshaller 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; }