New HSQLDB requires length for VARBINARY.

This commit is contained in:
Michael Bayne
2010-08-27 17:41:11 +00:00
parent 2471487d2f
commit 5a97565eaa
@@ -282,7 +282,7 @@ public class HSQLBuilder
return "TIMESTAMP"; return "TIMESTAMP";
} }
public String getBlobType (int length) { public String getBlobType (int length) {
return "VARBINARY"; return "VARBINARY(" + length + ")";
} }
public String getClobType (int length) { public String getClobType (int length) {
return "VARCHAR"; return "VARCHAR";