[ https://issues.apache.org/jira/browse/TINKERPOP-3083?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17935401#comment-17935401 ]
ASF GitHub Bot commented on TINKERPOP-3083: ------------------------------------------- codecov-commenter commented on PR #3072: URL: https://github.com/apache/tinkerpop/pull/3072#issuecomment-2723240758 ## [Codecov](https://app.codecov.io/gh/apache/tinkerpop/pull/3072?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache) Report All modified and coverable lines are covered by tests :white_check_mark: > Please [upload](https://docs.codecov.com/docs/codecov-uploader) report for BASE (`3.8-dev@14bf649`). [Learn more](https://docs.codecov.io/docs/error-reference?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache#section-missing-base-commit) about missing BASE report. <details><summary>Additional details and impacted files</summary> ```diff @@ Coverage Diff @@ ## 3.8-dev #3072 +/- ## ========================================== Coverage ? 76.37% Complexity ? 13241 ========================================== Files ? 1062 Lines ? 61572 Branches ? 7347 ========================================== Hits ? 47025 Misses ? 12031 Partials ? 2516 ``` </details> [:umbrella: View full report in Codecov by Sentry](https://app.codecov.io/gh/apache/tinkerpop/pull/3072?dropdown=coverage&src=pr&el=continue&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache). :loudspeaker: Have feedback on the report? [Share it here](https://about.codecov.io/codecov-pr-comment-feedback/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=apache). <details><summary>🚀 New features to boost your workflow: </summary> - ❄ [Test Analytics](https://docs.codecov.com/docs/test-analytics): Detect flaky tests, report on failures, and find test suite problems. - 📦 [JS Bundle Analysis](https://docs.codecov.com/docs/javascript-bundle-analysis): Save yourself from yourself by tracking and limiting bundle sizes in JS merges. </details> > The split() step should provide a way to split an entire string > --------------------------------------------------------------- > > Key: TINKERPOP-3083 > URL: https://issues.apache.org/jira/browse/TINKERPOP-3083 > Project: TinkerPop > Issue Type: Improvement > Components: language, process > Affects Versions: 3.7.2 > Reporter: Kelvin Lawrence > Assignee: Cole Greer > Priority: Critical > Fix For: 4.0.0 > > > There are many use cases where it is helpful to be able to split an entire > string into an array of characters. In other query languages, passing in a > null string ('') as the parameter achieves this. I believe the Gremlin step > should behave the same way. For example > Current behavior > {code:java} > g.inject('Hello').split('') > ['Hello']{code} > Proposed new behavior > {code:java} > g.inject('Hello').split('') > ['H','e','l','l','o']{code} -- This message was sent by Atlassian Jira (v8.20.10#820010)