Uploaded image for project: 'TinkerPop'
  1. TinkerPop
  2. TINKERPOP-1495

Global list deduplication doesn't work in OLAP

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 3.2.2
    • 3.2.3
    • process
    • None

    Description

      gremlin> g = TinkerFactory.createModern().traversal()
      ==>graphtraversalsource[tinkergraph[vertices:6 edges:6], standard]
      gremlin> a = TinkerFactory.createModern().traversal().withComputer()
      ==>graphtraversalsource[tinkergraph[vertices:6 edges:6], graphcomputer]
      gremlin> 
      gremlin> g.V().as("a").repeat(both()).times(3).emit().as("b").group().by(select("a")).by(select("b").dedup().order().by(id).fold()).select(values).unfold().dedup()
      ==>[v[1],v[2],v[3],v[4],v[5],v[6]]
      gremlin> a.V().as("a").repeat(both()).times(3).emit().as("b").group().by(select("a")).by(select("b").dedup().order().by(id).fold()).select(values).unfold().dedup()
      ==>[v[1],v[2],v[3],v[4],v[5],v[6]]
      ==>[v[1],v[2],v[3],v[4],v[5],v[6]]
      ==>[v[1],v[2],v[3],v[4],v[5],v[6]]
      ==>[v[1],v[3],v[4],v[5],v[6]]
      ==>[v[1],v[2],v[3],v[4],v[6]]
      ==>[v[1],v[2],v[3],v[4],v[5]]
      gremlin>
      

      Not tested in tp31.

      Attachments

        Issue Links

          Activity

            People

              okram Marko A. Rodriguez
              dkuppitz Daniel Kuppitz
              Votes:
              0 Vote for this issue
              Watchers:
              5 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: