GitHub user spmallette opened a pull request:
https://github.com/apache/tinkerpop/pull/843
TINKERPOP-1947 Fixed path history problem with mutations
https://issues.apache.org/jira/browse/TINKERPOP-1947
When a key of a mutation was a traversal it was not being integrated to the
parent traversal and tracked in the Parameters. Works now with:
```text
gremlin>
g.withSideEffect('k','name').addV('person').property(select('k'),'stephen')
==>v[3]
```
All tests pass with `docker/build.sh -t -n -i`
VOTE +1
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/apache/tinkerpop TINKERPOP-1947
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/tinkerpop/pull/843.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #843
----
commit 8fbfab7947d3cf547f7c27025be6876c5d86a1a4
Author: Stephen Mallette <spmva@...>
Date: 2018-04-19T18:25:33Z
TINKERPOP-1947 Fixed path history problem with mutations
When a key of a mutation was a traversal it was not being integrated to the
parent traversal and tracked in the Parameters.
----
---