lizhiboo opened a new pull request #797:
URL: https://github.com/apache/rocketmq-externals/pull/797
## What is the purpose of the change
fields put after SinkDataEntry built, SinkDataEntry will include fields.
```java
SinkDataEntry sinkDataEntry =
dataEntryBuilder.buildSinkDataEntry(message.getQueueOffset());
List<Field> fields = schema.getFields();
if (null != fields && !fields.isEmpty()) {
for (Field field : fields) {
dataEntryBuilder.putFiled(field.getName(),
datas[field.getIndex()]);
}
}
return sinkDataEntry;
```
--
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]