choeoe commented on issue #1946:
URL:
https://github.com/apache/incubator-hugegraph/issues/1946#issuecomment-1231074833
- I have noticed that the bug can be reproduced with three edges :
```
GremlinManager gremlin = graph.gremlin();
graph.schema().vertexLabel("vl0").ifNotExist().create();
graph.schema().edgeLabel("el0").sourceLabel("vl0").targetLabel("vl0").ifNotExist().create();
Vertex v0 = new com.baidu.hugegraph.structure.graph.Vertex("vl0");
Vertex v1 = new com.baidu.hugegraph.structure.graph.Vertex("vl0");
Vertex v2 = new com.baidu.hugegraph.structure.graph.Vertex("vl0");
graph.graph().addVertices(Arrays.asList(v0, v1, v2));
v0.addEdge("el0",v1);
v2.addEdge("el0",v1);
```
- the query:
```
g.E("L629264078178615296>1>>L629264078182809600","L629264078182809601>1>>L629264078182809600","L629264078178615296>1>>L629264078182809600","L629264078182809601>1>>L629264078182809600").count()
```
```
[2]
```
```
g.E("L629264078178615296>1>>L629264078182809600","L629264078182809601>1>>L629264078182809600","L629264078178615296>1>>L629264078182809600","L629264078182809601>1>>L629264078182809600","L629264078182809601>1>>L629264078182809600").count()
```
```
[5]
```
- Maybe related to the sequence of repeated ids. (The first id is the same
as the third one)
@imbajin
--
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]