Yuan Tian created IOTDB-6348:
--------------------------------

             Summary: Cannot query the updated value
                 Key: IOTDB-6348
                 URL: https://issues.apache.org/jira/browse/IOTDB-6348
             Project: Apache IoTDB
          Issue Type: Bug
          Components: Core/Query
            Reporter: Yuan Tian
            Assignee: Yuan Tian


change 
avg_series_point_number_threshold=2
 
and then execute the following sql:
```
create timeseries root.db.d1.s1 with datatype=INT32,encoding=PLAIN;
insert into root.db.d1(time,s1) values (2,2);
insert into root.db.d1(time,s1) values (3,3);

insert into root.db.d1(time,s1) values (2,20);

insert into root.db.d1(time,s1) values (5,5);
insert into root.db.d1(time,s1) values (6,6);


insert into root.db.d1(time,s1) values (5,50);

SELECT s1 FROM root.db.d1 where time = 5;
```
 
we will get the value 5, not 50.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

Reply via email to