shizy818 commented on code in PR #14616:
URL: https://github.com/apache/iotdb/pull/14616#discussion_r1909659147


##########
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:
   I remember we talk about this during design phase. We do not care much about 
sorted list in deserialization. It deserializes to one TVList and will soon 
flush to tsfile.



-- 
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]

Reply via email to