MarcosZyk commented on code in PR #11661:
URL: https://github.com/apache/iotdb/pull/11661#discussion_r1417099789


##########
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/schemaengine/schemaregion/mtree/impl/pbtree/mnode/impl/CachedMeasurementMNode.java:
##########
@@ -34,7 +34,7 @@ public class CachedMeasurementMNode extends 
AbstractMeasurementMNode<ICachedMNod
   public CachedMeasurementMNode(
       IDeviceMNode<ICachedMNode> parent, String name, IMeasurementSchema 
schema, String alias) {
     super(
-        new CachedBasicMNode(parent == null ? null : parent.getAsMNode(), 
name),
+        new CachedBasicInternalMNode(parent == null ? null : 
parent.getAsMNode(), name),

Review Comment:
   I misunderstood the usage. Already rollback.



##########
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/schemaengine/schemaregion/mtree/impl/mem/mnode/impl/MeasurementMNode.java:
##########
@@ -33,7 +33,7 @@ public class MeasurementMNode extends 
AbstractMeasurementMNode<IMemMNode, BasicM
   public MeasurementMNode(
       IDeviceMNode<IMemMNode> parent, String name, IMeasurementSchema schema, 
String alias) {
     super(
-        new BasicMNode(parent == null ? null : parent.getAsMNode(), name),
+        new BasicInternalMNode(parent == null ? null : parent.getAsMNode(), 
name),

Review Comment:
   I misunderstood the usage. Already rollback.



-- 
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: reviews-unsubscr...@iotdb.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to