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; }