klin-w commented on issue #5792: URL: https://github.com/apache/seatunnel/issues/5792#issuecomment-1794511416
目前发现代码bug https://github.com/apache/seatunnel/blob/2.3.3-release/seatunnel-connectors-v2/connector-elasticsearch/src/main/java/org/apache/seatunnel/connectors/seatunnel/elasticsearch/serialize/source/DefaultSeaTunnelRowDeserializer.java convertValue方法中 for (int i = 0; i < stringList.size(); i++) { Object convertValue = convertValue(elementType, stringList.get(i)); Array.set(arr, 0, convertValue); } Array.set(arr, 0, convertValue);应该修改为Array.set(arr, i, convertValue); -- 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]
