Eric Pai created IOTDB-2697:
-------------------------------
Summary: Unexpected statistics reading of deleted timeseries
Key: IOTDB-2697
URL: https://issues.apache.org/jira/browse/IOTDB-2697
Project: Apache IoTDB
Issue Type: Bug
Components: Core/Query
Reporter: Eric Pai
Assignee: Eric Pai
Fix For: master branch
Attachments: image-2022-03-08-10-17-52-776.png,
image-2022-03-08-10-21-13-199.png
!image-2022-03-08-10-17-52-776.png!
Replay SQLs:
{code:java}
SET STORAGE GROUP TO root.sg;
CREATE TIMESERIES root.sg.d1.s1 with datatype=FLOAT,encoding=PLAIN;
CREATE TIMESERIES root.sg.d1.s2 with datatype=INT64,encoding=PLAIN;
INSERT INTO root.sg.d1(time, s1, s2) VALUES(11000, 10, 20);
FLUSH;delete timeseries root.sg.d1.s1;
CREATE TIMESERIES root.sg.d1.s1 with datatype=INT32,encoding=PLAIN;
select * from root.sg.d1 where s1 < 8;{code}
Background exception logs
!image-2022-03-08-10-21-13-199.png!
--
This message was sent by Atlassian Jira
(v8.20.1#820001)