Yuan Tian created IOTDB-6254:
--------------------------------
Summary: Missing some data points while using limit in aligned
sensor cases
Key: IOTDB-6254
URL: https://issues.apache.org/jira/browse/IOTDB-6254
Project: Apache IoTDB
Issue Type: Bug
Components: Core/Query
Reporter: Yuan Tian
Assignee: Yuan Tian
using the following sqls, you can replay the case:
```
insert into root.db.d1(time,s1,s2) aligned values(1,1,1);
insert into root.db.d1(time,s1,s2) aligned values(2,2,2);
insert into root.db.d1(time,s1,s2) aligned values(3,3,3);
insert into root.db.d1(time,s1,s2) aligned values(4,4,4);
flush;
```
if you execute `select s1 from root.db.d1 where time >= 3 limit 2;`, you will
get empty result.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)