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
neo4j@neo4j> create (:player{age:33});
0 rows available after 23 ms, consumed after another 0 ms
neo4j@neo4j> MATCH p = (n:player) WHERE n.age >= 33.000000000000000011 and n.age=33 RETURN n.age;
+-------+
| n.age |
+-------+
| 33 |
+-------+
neo4j@neo4j> MATCH p = (n:player) WHERE n.age >= 33.0000000000011 and n.age=33 RETURN n.age;
+-------+
| n.age |
+-------+
+-------+
Describe the bug (required)
Floating point comparison is not precise.
Your Environments (required)
v2.6.1 and previous versions.
How To Reproduce(required)
Expected behavior
n.age >= 33.0000000000011
The text was updated successfully, but these errors were encountered: