llooFlashooll opened a new issue, #2159:
URL: https://github.com/apache/incubator-hugegraph/issues/2159
### Feature Description (功能描述)
Here is the related issue #2152 to add this new feature.
Let me introduce the problem here.
When I run the following query: `g.V().has('vp0',
not(not(gte('iUn2s').or(gte('730618742'))))).out().path()`. An exception is
thrown without further message to identify the root cause. I think this query
is syntactically correct, but I keep triggering this kind of problem.
- Expected behavior:
No exception should be expected to throw. Or further messages or prompts
should be thrown.
- Actual behavior:
A `java.lang.NumberFormatException` is thrown.
```
HugeGraph exception:
java.lang.NumberFormatException: Error encountered evaluating script:
g.V().has('vp0', not(not(gte('iUn2s').or(gte('730618742'))))).out().path()
```
- Feature to add:
HugeGraph does not support `gte('iUn2s')`, only `gte(number)` is allowed.
But in other well-known GraphDBs, `gte()` does support other data types.
--
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]