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


##########
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/storageengine/dataregion/read/reader/chunk/MemPageReader.java:
##########
@@ -214,4 +237,73 @@ public boolean isModified() {
   public void initTsBlockBuilder(List<TSDataType> dataTypes) {
     // non-aligned page reader don't need to init TsBlockBuilder at the very 
beginning
   }
+
+  private void getTsBlock() {
+    if (tsBlock == null) {
+      InitializeOffsets();
+      tsBlock = tsBlockSupplier.get();
+      if (pageMetadata.getStatistics() == null) {
+        initPageStatistics();
+      }
+    }
+  }
+
+  private void InitializeOffsets() {

Review Comment:
   InitializeOffsets函数命名不符合规范



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