[
https://issues.apache.org/jira/browse/TINKERPOP-2920?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17733499#comment-17733499
]
ASF GitHub Bot commented on TINKERPOP-2920:
-------------------------------------------
codecov-commenter commented on PR #2100:
URL: https://github.com/apache/tinkerpop/pull/2100#issuecomment-1594638716
##
[Codecov](https://app.codecov.io/gh/apache/tinkerpop/pull/2100?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
Report
> Merging
[#2100](https://app.codecov.io/gh/apache/tinkerpop/pull/2100?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
(fed6725) into
[3.5-dev](https://app.codecov.io/gh/apache/tinkerpop/commit/98d24d0dc1332e547e5acfefa4db3b5219a5d1ce?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
(98d24d0) will **increase** coverage by `0.02%`.
> The diff coverage is `n/a`.
```diff
@@ Coverage Diff @@
## 3.5-dev #2100 +/- ##
=============================================
+ Coverage 69.86% 69.88% +0.02%
=============================================
Files 865 24 -841
Lines 40964 3457 -37507
Branches 5447 0 -5447
=============================================
- Hits 28620 2416 -26204
+ Misses 10434 863 -9571
+ Partials 1910 178 -1732
```
[see 841 files with indirect coverage
changes](https://app.codecov.io/gh/apache/tinkerpop/pull/2100/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
:mega: We’re building smart automated test selection to slash your CI/CD
build times. [Learn
more](https://about.codecov.io/iterative-testing/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache)
> SubgraphStrategy failure when property key not present on vertex in by()
> ------------------------------------------------------------------------
>
> Key: TINKERPOP-2920
> URL: https://issues.apache.org/jira/browse/TINKERPOP-2920
> Project: TinkerPop
> Issue Type: Bug
> Components: process
> Affects Versions: 3.5.5
> Reporter: Stephen Mallette
> Priority: Minor
>
> The following triggers the failure assuming "example" isn't present on a
> vertex:
> {code}
> g.withStrategies(new SubgraphStrategy(vertexProperties: constant(true))).
> V().project("example").by("example")
> {code}
> Note that {{values('example")}} will work on 3.6.2, but not 3.5.5 which
> probably has something to do with differences in {{by()}} handling and
> {{ProductiveByStrategy}}.
> {code}
> gremlin> g.withStrategies(new SubgraphStrategy(vertexProperties:
> constant(true))).
> ......1> withoutStrategies(ProductiveByStrategy).
> ......2> V().project("example").by(values("example"))
> The provided traverser does not map to a value:
> v[1][TinkerVertex]->[PropertiesStep([example],property),
> OrStep([[ClassFilterStep(VertexProperty)],
> [TraversalFilterStep([ConstantStep(true)])]]),
> PropertyValueStep][DefaultGraphTraversal] parent[[TinkerGraphStep(vertex,[]),
> ProjectStep([example],[[PropertiesStep([example],property),
> OrStep([[ClassFilterStep(VertexProperty)],
> [TraversalFilterStep([ConstantStep(true)])]]), PropertyValueStep]])]]
> Type ':help' or ':h' for help.
> Display stack trace? [yN]
> ......1> V().project("example").by("example")
> The provided traverser does not map to a value:
> v[1][TinkerVertex]->[PropertiesStep([example],property),
> TraversalFilterStep([ConstantStep(true)]),
> OrStep([[ClassFilterStep(VertexProperty)],
> [TraversalFilterStep([ConstantStep(true)])]]),
> PropertyValueStep][DefaultTraversal]
> parent[[CoalesceStep([value([PropertiesStep([example],property),
> TraversalFilterStep([ConstantStep(true)]),
> OrStep([[ClassFilterStep(VertexProperty)],
> [TraversalFilterStep([ConstantStep(true)])]]), PropertyValueStep]), (null)])]]
> Type ':help' or ':h' for help.
> Display stack trace? [yN]
> {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)