Daniel Kuppitz created TINKERPOP-1958:
-----------------------------------------
Summary: TinkerGraphCountStrategy can return wrong counts
Key: TINKERPOP-1958
URL: https://issues.apache.org/jira/browse/TINKERPOP-1958
Project: TinkerPop
Issue Type: Bug
Components: process
Affects Versions: 3.3.2
Reporter: Daniel Kuppitz
Assignee: Daniel Kuppitz
{noformat}
gremlin> g = TinkerFactory.createModern().traversal()
==>graphtraversalsource[tinkergraph[vertices:6 edges:6], standard]
gremlin> g.V().map(out())
==>v[3]
==>v[5]
==>v[3]
gremlin> g.V().map(out()).count()
==>6
gremlin> g.V().select("a")
gremlin> g.V().select("a").count()
==>6
{noformat}
Not tested in 3.2.x, but it's probably the same issue.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)