GumpacG opened a new pull request, #3372:
URL: https://github.com/apache/tinkerpop/pull/3372

   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.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to