-
Notifications
You must be signed in to change notification settings - Fork 159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG]: add count_matches and fix a bunch of str functions #2946
[BUG]: add count_matches and fix a bunch of str functions #2946
Conversation
CodSpeed Performance ReportMerging #2946 will not alter performanceComparing Summary
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@@ -17,13 +20,14 @@ impl SQLModule for SQLModuleUtf8 { | |||
parent.add_fn("ends_with", EndsWith); | |||
parent.add_fn("starts_with", StartsWith); | |||
parent.add_fn("contains", Contains); | |||
parent.add_fn("split", Split(true)); | |||
parent.add_fn("split", Split(false)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unrelated to this change, but it would be nice to have some docs on the Utf8Expr
enum on what the boolean parameter for Split
means, as well as the other enum values
…nc#2946) a bunch of improvements to the str functions in SQL
a bunch of improvements to the str functions in SQL