This is an automated email from the ASF dual-hosted git repository.
shuwenwei pushed a commit to branch object_type
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/object_type by this push:
new 6fb0839af89 fix bug
6fb0839af89 is described below
commit 6fb0839af89687f118ad4dc0dd22cfc2c7f30882
Author: shuwenwei <[email protected]>
AuthorDate: Wed Jul 9 18:03:10 2025 +0800
fix bug
---
.../dataregion/compaction/execute/utils/CompactionUtils.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/storageengine/dataregion/compaction/execute/utils/CompactionUtils.java
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/storageengine/dataregion/compaction/execute/utils/CompactionUtils.java
index d744b14e087..584ff0fe44a 100644
---
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/storageengine/dataregion/compaction/execute/utils/CompactionUtils.java
+++
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/storageengine/dataregion/compaction/execute/utils/CompactionUtils.java
@@ -506,7 +506,7 @@ public class CompactionUtils {
if (dataTypes[i] == TSDataType.OBJECT) {
objectColumnIndexList.add(i);
List<ModEntry> deletionInterval =
ModificationUtils.sortAndMerge(valueMods.get(i));
- objectColumnHasDeletion |= !deletionInterval.isEmpty();
+ objectColumnHasDeletion |= (!deletionInterval.isEmpty() ||
!timeMods.isEmpty());
objectDeletionIntervalList.add(deletionInterval);
}
}