lvca opened a new pull request #1552:
URL: https://github.com/apache/tinkerpop/pull/1552
Since there is no such concept of "Infinite" number in BigDecimal, a
comparison between a BigDecimal and a Float.INFINITE or Double.INFINITE causes
a parsing exception.
Example:
```java
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)”;
```
For more information: https://github.com/ArcadeData/arcadedb/issues/289
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]