-
-
Notifications
You must be signed in to change notification settings - Fork 94
Closed
Milestone
Description
ArcadeDB Version: Arcadedb 21.12.1 tinkerpop 3.4.10
JDK Version: 11
OS: windows wsl
Error occurred when querying "has()" on properties if the data has INFINITY field.
Expected behavior
return vertices
Actual behavior
java.util.concurrent.ExecutionException: org.apache.tinkerpop.gremlin.driver.exception.ResponseException: Character I is neither a decimal digit number, decimal point, nor "e" notation exponential mark.
Steps to reproduce
Vertex alice = g.addV("person").property("hair", Double.POSITIVE_INFINITY ).next();
Vertex bob = g.addV("person").property("hair", 500 ).next();
String query =“g.V().has('hair',500.00)”;
Reactions are currently unavailable