This is an automated email from the ASF dual-hosted git repository.
justinchen pushed a commit to branch run-ci-mod
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/run-ci-mod by this push:
new 96191048928 grasia
96191048928 is described below
commit 9619104892807b4653e050369acc68b2a0d8af77
Author: Caideyipi <[email protected]>
AuthorDate: Fri Mar 27 15:55:18 2026 +0800
grasia
---
.../common/tsfile/parser/scan/TsFileInsertionEventScanParser.java | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/event/common/tsfile/parser/scan/TsFileInsertionEventScanParser.java
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/event/common/tsfile/parser/scan/TsFileInsertionEventScanParser.java
index 884032a989c..d35d622e6b5 100644
---
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/event/common/tsfile/parser/scan/TsFileInsertionEventScanParser.java
+++
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/event/common/tsfile/parser/scan/TsFileInsertionEventScanParser.java
@@ -25,6 +25,7 @@ import org.apache.iotdb.commons.auth.entity.PrivilegeType;
import org.apache.iotdb.commons.exception.IllegalPathException;
import org.apache.iotdb.commons.exception.auth.AccessDeniedException;
import org.apache.iotdb.commons.path.MeasurementPath;
+import org.apache.iotdb.commons.path.PartialPath;
import org.apache.iotdb.commons.pipe.agent.task.meta.PipeTaskMeta;
import org.apache.iotdb.commons.pipe.config.PipeConfig;
import org.apache.iotdb.commons.pipe.datastructure.pattern.TreePattern;
@@ -683,7 +684,9 @@ public class TsFileInsertionEventScanParser extends
TsFileInsertionEventParser {
tsFileSequenceReader.position(nextMarkerOffset);
return true;
} else if (chunkHeader.getMeasurementID().equals("s1")) {
- LOGGER.warn("s1 not filtered, currentModifications: {}",
currentModifications);
+ LOGGER.warn(
+ "s1 not filtered, currentModifications: {}",
+ currentModifications.getDeviceOverlapped(new
PartialPath("root.**")));
}
}