Details
-
Improvement
-
Status: Open
-
Major
-
Resolution: Unresolved
-
3.6.8, 3.7.3
-
None
-
None
Description
hasId() is configured to unroll lists/arrays of ids which are passed as arguments (see TINKERPOP-2863). The current implementation works for Object[] and Collections of ids, but fails for primitive arrays (int[]...)
Currently `hasId(new Integer[]
{1,2,3}) == hasId(1, 2, 3)` but `hasId(new int[]{1,2,3}) != hasId(1, 2, 3)`.
The existing Object[] behaviour should be extended to handle all primitive array types as well.
Attachments
Issue Links
- is related to
-
TINKERPOP-2863 HasId Step generates incorrect results when given a list of IDs mid-traversal
- Closed