[jira] [Commented] (TINKERPOP-1681) Multiple hasId's are or'd into GraphStep

2017-05-28 Thread Daniel Kuppitz (JIRA)
[ https://issues.apache.org/jira/browse/TINKERPOP-1681?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16027948#comment-16027948 ] Daniel Kuppitz commented on TINKERPOP-1681: --- Yea, I've added your 2 test cases. See:

[jira] [Commented] (TINKERPOP-1681) Multiple hasId's are or'd into GraphStep

2017-05-28 Thread pieter martin (JIRA)
[ https://issues.apache.org/jira/browse/TINKERPOP-1681?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16027922#comment-16027922 ] pieter martin commented on TINKERPOP-1681: -- Just to check does your fix also work for,

[jira] [Commented] (TINKERPOP-1681) Multiple hasId's are or'd into GraphStep

2017-05-28 Thread Daniel Kuppitz (JIRA)
[ https://issues.apache.org/jira/browse/TINKERPOP-1681?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16027825#comment-16027825 ] Daniel Kuppitz commented on TINKERPOP-1681: --- I have a fix locally (the only folds the first

Re: hasId

2017-05-28 Thread Daniel Kuppitz
I created the ticket: https://issues.apache.org/jira/browse/TINKERPOP-1681 On Sun, May 28, 2017 at 11:12 AM, Daniel Kuppitz wrote: > Hi Pieter, > > that's a nasty bug. I just verified that it's also a bug in master/: > > gremlin> graph = TinkerGraph.open() >

[jira] [Created] (TINKERPOP-1681) Multiple hasId's are or'd into GraphStep

2017-05-28 Thread Daniel Kuppitz (JIRA)
Daniel Kuppitz created TINKERPOP-1681: - Summary: Multiple hasId's are or'd into GraphStep Key: TINKERPOP-1681 URL: https://issues.apache.org/jira/browse/TINKERPOP-1681 Project: TinkerPop

Re: hasId

2017-05-28 Thread Daniel Kuppitz
Hi Pieter, that's a nasty bug. I just verified that it's also a bug in master/: gremlin> graph = TinkerGraph.open() ==>tinkergraph[vertices:0 edges:0] gremlin> a = graph.addVertex(label, "A") ==>v[0] gremlin> b = graph.addVertex(label, "B") ==>v[1] gremlin>

RE: hasId

2017-05-28 Thread pieter gmail
Hi, The following code illustrates my concern/confusion. @Test public void testHasId() { final TinkerGraph graph = TinkerGraph.open(); Vertex a = graph.addVertex(T.label, "A"); Vertex b = graph.addVertex(T.label, "B"); List vertices =