[Bug] There is a logical error in the comparison operator.
- 主要言語
- Java
- スター
- 6.4k
- フォーク
- 1.2k
- 平均マージ
- 1日 23時間
- マージ済み PR(30日)
- 115
説明
### Search before asking
- [X] I searched in the [issues](https://github.com/apache/iotdb/issues) and found nothing similar.
### Version
version 1.3.3 (Build: ad95a7e)
### Describe the bug and provide the minimal reproduce step
```
DROP DATABASE root.db0
CREATE DATABASE root.db0
CREATE TIMESERIES root.db0.t1 WITH datatype=DOUBLE 'MAX_POINT_NUMBER'='8';
INSERT INTO root.db0(timestamp, t1) VALUES (1685589672533, 0.01);
INSERT INTO root.db0(t1) VALUES (0.02);
# query 1
SELECT t1 AS ref0 FROM root.db0 WHERE 0.02 <= t1 AND t1 <= 0.03
# query 2
SELECT t1 AS ref0 FROM root.db0 WHERE 0.01 <= t1 AND t1 <= 0.03
# query 3
SELECT t1 AS ref0 FROM root.db0 WHERE 1 < time
# query 3 success
SELECT t1 AS ref0 FROM root.db0 WHERE t1 >= 0.01 AND t1 <= 0.03
```
### What did you expect to see?
Query 1 returned result set: 0.02
Query 2 returned result set: 0.01 and 0.02
Query 3 returned result set: 0.01 and 0.02
Query 4 returned result set: 0.01 and 0.02
### What did you see instead?
Query 1 returned result set: 0.01 and 0.02
Query 2 returned result set: 0.02
Query 3 returned result set: **Empty set.**
Query 4 returned result set: 0.01 and 0.02
### Anything else?
Dear IoTDB team, I believe this is a logical bug. When the comparison operator is in the form of `constant <= column`, the correct result set cannot be returned.
### Are you willing to submit a PR?
- [X] I'm willing to submit a PR!
コントリビューションガイド
調査の方向性
まず、IoTDB 1.3.3 に対して報告された比較ケースを再現します。特に、`0.02 <= t1` や `1 < time` のように左辺に定数がある述語を確認してください。これらの SQL 述語で使用される比較処理を追跡し、期待される結果セットに対するリグレッションカバレッジを追加します。両方のオペランド順序で同等かつ正しい結果が返され、既存の `t1 >= 0.01` 形式も引き続き正しいことを確認できれば完了です。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- java, sql
- 領域
- databases
- issue の種類
- バグ
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 42/100