hansva commented on code in PR #2876:
URL: https://github.com/apache/hop/pull/2876#discussion_r1180008657
##########
plugins/databases/access/src/main/java/org/apache/hop/pipeline/transforms/accessoutput/AccessOutput.java:
##########
@@ -323,13 +323,12 @@ public List<ColumnBuilder> prepareTableColumns(IRowMeta
row) {
column.setLength(DataType.SHORT_DATE_TIME.getFixedSize());
break;
case IValueMeta.TYPE_STRING:
- if (length < 255) {
+ if (length < DataType.TEXT.getMaxSize()/DataType.TEXT.getUnitSize()
) {
Review Comment:
What is this division supposed to do?
A bit annoying that the Jackcess documentation doesn't have much info.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]