[ https://issues.apache.org/jira/browse/TINKERPOP-2893?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17714413#comment-17714413 ]
ASF GitHub Bot commented on TINKERPOP-2893: ------------------------------------------- codecov-commenter commented on PR #2033: URL: https://github.com/apache/tinkerpop/pull/2033#issuecomment-1515724183 ## [Codecov](https://codecov.io/gh/apache/tinkerpop/pull/2033?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation) Report > Merging [#2033](https://codecov.io/gh/apache/tinkerpop/pull/2033?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation) (1e65523) into [3.5-dev](https://codecov.io/gh/apache/tinkerpop/commit/783be486b6024adea12502660260ac4cccc38224?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation) (783be48) will **decrease** coverage by `5.23%`. > The diff coverage is `n/a`. ```diff @@ Coverage Diff @@ ## 3.5-dev #2033 +/- ## ============================================= - Coverage 69.38% 64.16% -5.23% ============================================= Files 866 25 -841 Lines 41227 3750 -37477 Branches 5434 0 -5434 ============================================= - Hits 28607 2406 -26201 + Misses 10710 1166 -9544 + Partials 1910 178 -1732 ``` [see 841 files with indirect coverage changes](https://codecov.io/gh/apache/tinkerpop/pull/2033/indirect-changes?src=pr&el=tree-more&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation) :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=The+Apache+Software+Foundation) > Incorrectly comparing a counted value with multiple predicates > -------------------------------------------------------------- > > Key: TINKERPOP-2893 > URL: https://issues.apache.org/jira/browse/TINKERPOP-2893 > Project: TinkerPop > Issue Type: Bug > Components: process > Affects Versions: 3.5.5 > Reporter: Lei Tang > Priority: Critical > > We use a composition of two predicates inside(-1,1).and(lt(-1)) to filter > numbers that are greater than -1 and less -1. Obviously, no values satisfy > this condition. Therefore, we expect Tinkergraph returns an empty set. > However, a vertex is returned. > {code:java} > gremlin> :> g.V().where(__.in('knows').count().is(inside(-1,1).and(lt(-1)))) > ==>v[0] {code} > The graph of this example is as following. > {code:java} > Vertex bob = g.addV("person").property("name", "Bob").next(); // v[0] > Vertex alice = g.addV("person").property("name", "Alice").next(); // v[1] > Edge edge1 = g.addE("knows").from(bob).to(alice).next();{code} -- This message was sent by Atlassian Jira (v8.20.10#820010)