git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@391
f203690c-595d-4dc9-a70b-
905162fa7fd2
<action dev="jahlborn" type="add">
Add Query reading support.
</action>
+ <action dev="jahlborn" type="fix" issue="2788029">
+ Be more forgiving for input column length.
+ </action>
</release>
<release version="1.1.18" date="2008-11-08">
<action dev="jahlborn" type="add">
}
if(!isVariableLength()) {
- if(getLength() != getType().getFixedSize()) {
+ if(getLength() < getType().getFixedSize()) {
throw new IllegalArgumentException("invalid fixed length size");
}
} else if(!getType().isLongValue()) {