corgy-w commented on code in PR #10175:
URL: https://github.com/apache/seatunnel/pull/10175#discussion_r2606769036
##########
seatunnel-connectors-v2/connector-kudu/src/main/java/org/apache/seatunnel/connectors/seatunnel/kudu/catalog/KuduCatalog.java:
##########
@@ -147,14 +148,19 @@ public CatalogTable getTable(TablePath tablePath)
builder,
IntStream.range(0, columnSchemaList.size()).iterator(),
i -> {
+ ColumnSchema columnSchema = columnSchemaList.get(i);
SeaTunnelDataType<?> type =
KuduTypeMapper.mapping(columnSchemaList, i);
+ Long columnLength = null;
Review Comment:
Thanks for the fix and the detailed description
Does Kudu’s STRING type really have no logical length?
--
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]