feat: Add string trim function#6372
Open
Lucas61000 wants to merge 3 commits intoEventual-Inc:mainfrom
Open
Conversation
Contributor
Greptile SummaryThis PR adds a
Confidence Score: 4/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant User as Python User
participant Expr as Expression.trim()
participant Fn as daft.functions.trim()
participant Series as SeriesStringNamespace.trim()
participant Rust as Trim ScalarUDF (Rust)
User->>Expr: col("x").trim()
Expr->>Fn: trim(self)
Fn->>Fn: _call_builtin_scalar_fn("trim", expr)
Fn-->>User: Expression (lazy plan node)
User->>Series: series.str.trim()
Series->>Series: _eval_expressions("trim")
Series->>Rust: Trim::call(inputs)
Rust->>Rust: val.trim()
Rust-->>Series: DaftResult[Series]
Series-->>User: trimmed Series
Last reviewed commit: bc0b6ae |
Contributor
Author
|
Hi @universalmind303 @srilman , could you please review this PR when you have time? I’d appreciate your feedback on how to best handle the trim and strip functions. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes Made
Add
trim()function to Daft's string functions.Related Issues
#3792