dbf importer fix after review

This commit is contained in:
akulikov 2022-08-11 14:07:15 +03:00
parent 18b7909e36
commit c3fb5a8dc7

View file

@ -115,7 +115,11 @@ public class ValidateFields extends Stage implements InitializingBean {
continue;
} else {
if (fieldLength > currColumnStructure.getLength()) {
log.error("uuid {}. ...", taskUuid);
log.error("uuid {}. Field {} with DATE type has wrong length (length from file > length db field)",
taskUuid,
currFieldName);
valid = false;
continue;
}
}
}