You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tinkerpop.apache.org by "Daniel Kuppitz (JIRA)" <ji...@apache.org> on 2016/09/09 09:14:20 UTC

[jira] [Created] (TINKERPOP-1441) Wrong counts with bulking disabled

Daniel Kuppitz created TINKERPOP-1441:
-----------------------------------------

             Summary: Wrong counts with bulking disabled
                 Key: TINKERPOP-1441
                 URL: https://issues.apache.org/jira/browse/TINKERPOP-1441
             Project: TinkerPop
          Issue Type: Bug
    Affects Versions: 3.2.2
            Reporter: Daniel Kuppitz
            Assignee: Marko A. Rodriguez
             Fix For: 3.2.3


{code}
gremlin> g = TinkerFactory.createModern().traversal()
==>graphtraversalsource[tinkergraph[vertices:6 edges:6], standard]
gremlin> g.withBulk(false).V().repeat(both()).times(5)
==>v[3]
==>v[2]
==>v[4]
==>v[5]
==>v[1]
==>v[6]
gremlin> g.withBulk(false).V().repeat(both()).times(5).count()
==>12
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)