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

ASF GitHub Bot commented on TINKERPOP-1573:
-------------------------------------------

Github user okram commented on the issue:

    https://github.com/apache/tinkerpop/pull/507
  
    I know it sucks. I don't like this any more than you do. Here is the saving 
grace -- if someone comes up with a better solution, there are only two classes 
we need to tweak (`Bytecode` and `Bindings`). `Bindings` (besides as a 
singleton) are never accessed outside of these two classes. Moreover, most of 
the `Bindings` methods are `protected` and thus, not exposed to users. Only 
`of` is exposed.
    
    I'll merge and perhaps someone down the road comes up with the better 
solution. ?.


> Bindings don't work in coalesce
> -------------------------------
>
>                 Key: TINKERPOP-1573
>                 URL: https://issues.apache.org/jira/browse/TINKERPOP-1573
>             Project: TinkerPop
>          Issue Type: Bug
>          Components: structure
>    Affects Versions: 3.2.3
>            Reporter: Robert Dale
>            Assignee: Marko A. Rodriguez
>
> {noformat}
> gremlin> graph = EmptyGraph.instance()
> ==>emptygraph[empty]
> gremlin> g = graph.traversal().withRemote('conf/remote-graph.properties')
> ==>graphtraversalsource[emptygraph[empty], standard]
> gremlin> g.addV('fof').property('key',234)
> ==>v[0]
> gremlin> b = new Bindings()
> ==>{}
> gremlin> 
> g.withBindings(b).V().has('fof','key',234).coalesce(__.V().has(b.of('l','fof'),
>  b.of('k', 'key'), b.of('v',234)), 
> __.addV(b.of('nl','fof')).property(b.of('sk','key'), 
> b.of('sv',234))).property(b.of('nk','newkey'), 
> b.of('nv','newvalue')).asAdmin().getBytecode()
> ==>[[], [V(), has(fof, key, 234), coalesce([[], [V(), has(fof, key, 234)]], 
> [[], [addV(fof), property(key, 234)]]), property(binding[nk=newkey], 
> binding[nv=newvalue])]]
> {noformat}



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

Reply via email to