You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, TDengine team. In the above query, I have encountered an issue while converting a DOUBLE value to BINARY, 0.1234567891012345 is correctly not retrieved; however, a value with lower precision, such as 0.015151515151515, is unexpectedly retrieved. The result of the cast does not meet expectations, This might be a logical error. Thank you.
The text was updated successfully, but these errors were encountered:
Bug Description
The abstract expression sequence is:
CAST(timeseries AS BINARY(50)) != timeseries;
To Reproduce
Assume that we execute the following statement under a database named testdb.
Expected Behavior
Expected result set for Query 1: empty set
Actual behaviour
Query 1 returned result set: 0.018518518518519 and 0.015151515151515
Environment
Additional Context
Hello, TDengine team. In the above query, I have encountered an issue while converting a DOUBLE value to BINARY,
0.1234567891012345
is correctly not retrieved; however, a value with lower precision, such as0.015151515151515
, is unexpectedly retrieved. The result of the cast does not meet expectations, This might be a logical error. Thank you.The text was updated successfully, but these errors were encountered: