Support @Length on byte[] fields.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@1922 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2006-09-21 01:31:04 +00:00
parent 121b864558
commit 77b4adba34
@@ -175,7 +175,7 @@ public abstract class FieldMarshaller
builder.append(" ").append(type);
// if this is a VARCHAR field, add the length
if (type.equals("VARCHAR")) {
if (type.equals("VARCHAR") || type.equals("VARBINARY")) {
builder.append("(").append(length).append(")");
}