Skip to content

TINKERPOP-3225 conjoin has incorrect null handling#3372

Open
GumpacG wants to merge 2 commits intoapache:3.7-devfrom
GumpacG:TINKERPOP-3225
Open

TINKERPOP-3225 conjoin has incorrect null handling#3372
GumpacG wants to merge 2 commits intoapache:3.7-devfrom
GumpacG:TINKERPOP-3225

Conversation

@GumpacG
Copy link
Copy Markdown

@GumpacG GumpacG commented Mar 30, 2026

https://issues.apache.org/jira/browse/TINKERPOP-3225

// before
gremlin> g.inject([null]).conjoin("-")
==>null
gremlin> g.inject([null, null]).conjoin("-")
==>null

// after
gremlin> g.inject([null]).conjoin("+")
==>
gremlin> g.inject([null, null]).conjoin("+")
==>

Added tests to core and feature tests.

@codecov-commenter
Copy link
Copy Markdown

codecov-commenter commented Mar 30, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 75.50%. Comparing base (9b46b67) to head (fb7dfdf).
⚠️ Report is 445 commits behind head on 3.7-dev.

Additional details and impacted files
@@              Coverage Diff              @@
##             3.7-dev    #3372      +/-   ##
=============================================
- Coverage      76.14%   75.50%   -0.65%     
- Complexity     13152    13164      +12     
=============================================
  Files           1084     1092       +8     
  Lines          65160    67191    +2031     
  Branches        7285     7391     +106     
=============================================
+ Hits           49616    50731    +1115     
- Misses         12839    13839    +1000     
+ Partials        2705     2621      -84     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants