[Bug] There is a logical error in performing multiplication operations with a value of 0.
- Lingua principale
- Java
- Stelle
- 6.4k
- Fork
- 1.2k
- Merge medio
- 1g 23h
- PR unite (30g)
- 115
Descrizione
### 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=INT32;
INSERT INTO root.db0(timestamp, t1) VALUES (1641024000000, 0);
# query 1
SELECT t1 FROM root.db0 WHERE (-1) * t1 == 0;
# query 2
SELECT t1 FROM root.db0 WHERE (-1) * t1 == -0.0;
```
### What did you expect to see?
Query 1 returned result set: **0**
Query 2 returned result set: **0**
### What did you see instead?
Query 1 returned result set: **empty set**
Query 2 returned result set: **0**
### Anything else?
Dear IoTDB team, In the query above, the result of the expression `(-1) * t1` is `-0.0`. In principle, this value should be equivalent to `0`. However, a comparison of the results from Query 1 and Query 2 indicates that the two are not equal. The same logical error also exists in division operations.
### Are you willing to submit a PR?
- [ ] I'm willing to submit a PR!
Guida per i contributori
Apri la guida per i contributori
Direzione di ricerca
Inizia eseguendo le due query SQL di IoTDB fornite sulla versione 1.3.3 e confronta i risultati dei relativi predicati. Traccia quindi la valutazione delle espressioni utilizzata dalla moltiplicazione e dalla divisione, poi verifica che i confronti che coinvolgono 0 e -0.0 producano il risultato previsto senza modificare il comportamento delle altre query.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- java, sql
- Ambito
- databases
- Tipo di issue
- Bug
- Difficoltà
- 4/5
- Tempo stimato
- 3-5 giorni
- Stato di attività
- Ferma
- Chiarezza
- Abbastanza chiara
- Idoneità per principianti
- 38/100