[FEA] Support repetition quantifiers ?
and *
with regexp_replace
#4468
Labels
feature request
New feature or request
?
and *
with regexp_replace
#4468
Is your feature request related to a problem? Please describe.
We currently fall back to CPU for repetition quantifiers
?
and*
withregexp_replace
because the behavior is not consistent with Spark.For example,
regexp_replace('a', '\D?', '_REPLACE_')
produces_REPLACE__REPLACE_
on CPU, and_REPLACE_
on GPU.Describe the solution you'd like
Make the behavior consistent with Spark and enable this on GPU.
Describe alternatives you've considered
None
Additional context
None
The text was updated successfully, but these errors were encountered: