jt2594838 commented on code in PR #14616:
URL: https://github.com/apache/iotdb/pull/14616#discussion_r1909667854
##########
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/storageengine/dataregion/memtable/AlignedWritableMemChunk.java:
##########
@@ -584,7 +946,9 @@ public void serializeToWAL(IWALByteBufferView buffer) {
schema.serializeTo(ByteBuffer.wrap(bytes));
buffer.put(bytes);
}
-
+ for (AlignedTVList alignedTvList : sortedList) {
+ alignedTvList.serializeToWAL(buffer);
+ }
Review Comment:
That is OK. But is it true that the deserialization procedure does not need
any modification? I think the disk format has still been changed.
--
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]