[ 
https://issues.apache.org/jira/browse/TINKERPOP3-774?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14632888#comment-14632888
 ] 

Marko A. Rodriguez commented on TINKERPOP3-774:
-----------------------------------------------

One last thing -- I don't promise -- be sure to add the traversal you were 
doing over MODERN that demonstrated the {{order().dedup()}} problem (perhaps to 
{{OrderTest}}). I know you prove it in {{DedupBijectionStrategyTest}}, but the 
actual traversal would be good to add for added safety to ensure everything 
works fine when multiple strategies are interacting.


> order / dedup issues
> --------------------
>
>                 Key: TINKERPOP3-774
>                 URL: https://issues.apache.org/jira/browse/TINKERPOP3-774
>             Project: TinkerPop 3
>          Issue Type: Bug
>          Components: process
>    Affects Versions: 3.0.0-incubating
>            Reporter: Daniel Kuppitz
>            Assignee: Daniel Kuppitz
>
> Not sure if this is an {{order}}- or a {{dedup}}-issue (or maybe both), but 
> these two steps don't play well together. The following sample were created 
> using the GD graph.
> *{{dedup()}} w/o keys*
> {code}
> g.V().as("a").outE("followedBy").as("e").inV().as("b").
>       select("e").order().by("weight", decr).limit(10).
>       select("b").out("sungBy").dedup()
>  
> ==>v[453]
> ==>v[347]
> ==>v[405]
> ==>v[342]
> ==>v[342]
> ==>v[340]
> ==>v[342]
> ==>v[351]
> ==>v[351]
> {code}
> *{{dedup()}} w/ keys*
> {code}
> g.V().as("a").outE().as("e").inV().as("b").
>       select("e").order().by("weight", decr).limit(10).
>       as("c").inV().as("d").dedup("c","d")
>  
> Neither the sideEffects, map, nor path has a c-key: DedupGlobalStep([c, d])
> Display stack trace? [yN]
> {code}



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

Reply via email to