forked from apache/doris
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feature](functions) impl scalar functions trim_in、ltrim_in and rtrim…
…_in (apache#41681) trim_in is different from trim Find and remove any characters in a set of characters at both ends of a string (regardless of order) mysql> SELECT TRIM('abcd', 'cde'); +---------------------+ | trim('abcd', 'cde') | +---------------------+ | abcd | +---------------------+ 1 row in set (0.02 sec) mysql> SELECT TRIM_IN('abcd', 'cde'); +------------------------+ | trim_in('abcd', 'cde') | +------------------------+ | ab | +------------------------+ 1 row in set (0.02 sec)
- Loading branch information
1 parent
09d02c0
commit fa5f1b9
Showing
9 changed files
with
1,250 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.