Skip to content

Commit

Permalink
feat(dask): implement StringReplace execution
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Sep 13, 2022
1 parent 29daa32 commit 1389f4b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ibis/backends/dask/execution/strings.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
execute_series_regex_replace,
execute_series_regex_search,
execute_series_right,
execute_series_string_replace,
execute_series_translate_scalar_scalar,
execute_series_translate_scalar_series,
execute_series_translate_series_scalar,
Expand Down Expand Up @@ -80,6 +81,12 @@
),
],
ops.Reverse: [((dd.Series,), execute_string_reverse)],
ops.StringReplace: [
(
(dd.Series, (dd.Series, str), (dd.Series, str)),
execute_series_string_replace,
)
],
ops.Lowercase: [((dd.Series,), execute_string_lower)],
ops.Uppercase: [((dd.Series,), execute_string_upper)],
ops.Capitalize: [((dd.Series,), execute_string_capitalize)],
Expand Down

0 comments on commit 1389f4b

Please sign in to comment.