lizhiboo opened a new issue #798:
URL: https://github.com/apache/rocketmq-externals/issues/798
fields will not be built in SinkDataEntry.
#797
```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]