Fix type parameter.

This commit is contained in:
Michael Bayne
2021-02-28 14:47:13 -08:00
parent 536fda6dbb
commit 2e0a28452f
@@ -558,7 +558,7 @@ public abstract class FieldMarshaller<T>
}
}
protected static class ShortArrayMarshaller extends FieldMarshaller<int[]> {
protected static class ShortArrayMarshaller extends FieldMarshaller<short[]> {
@Override public String getColumnType (ColumnTyper typer, int length) {
return typer.getBlobType(length*2);
}