Minghui Liu created IOTDB-4598:
----------------------------------
Summary: Illegal deleteIntervalList generated from mods file
Key: IOTDB-4598
URL: https://issues.apache.org/jira/browse/IOTDB-4598
Project: Apache IoTDB
Issue Type: Bug
Affects Versions: master branch
Reporter: Minghui Liu
Assignee: yanze chen
Fix For: master branch
Attachments: data.zip, image-2022-10-10-22-52-18-267.png
*In PageReader, we require that the time ranges in the deleteIntervalList have
been sorted and merged.* But:
!image-2022-10-10-22-52-18-267.png|width=239,height=132!
*This issue resulted in incorrect query results.*
select count(sensor_20) from root.sg.test_1.d_2;
incorrect result: 118
correct result: 111
*Reproduce way:*
Use the data directory in the attachment.
Modify the configuration as follows:
*IoTDBConfig:*
{code:java}
private boolean enablePartition = true;
private long partitionInterval = 86400;
private long timePartitionIntervalForStorage = 10000;
private long timePartitionIntervalForRouting = 10000;
private boolean enableSeqSpaceCompaction = false;
private boolean enableUnseqSpaceCompaction = false;
private boolean enableCrossSpaceCompaction = false;
{code}
*ConfigNodeConfig:*
{code:java}
private long timePartitionInterval = 10000;{code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)