MarcosZyk commented on code in PR #11566: URL: https://github.com/apache/iotdb/pull/11566#discussion_r1396707383
########## iotdb-core/datanode/src/main/java/org/apache/iotdb/db/schemaengine/schemaregion/mtree/traverser/Traverser.java: ########## @@ -73,6 +74,9 @@ public abstract class Traverser<R, N extends IMNode<N>> extends AbstractTreeVisi // default false means fullPath pattern match protected boolean isPrefixMatch = false; + private IMNodeIterator<N> currentChildrenIterator; Review Comment: Should this attribute be updated during traverse process? What about getting the current iterator via peeking the IteratorStack in AbstractTreeVisitor? -- 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]
