Skip to content
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

feature: support REGEXP_REPLACE function #4944

Merged
merged 5 commits into from
Apr 20, 2022
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions common/functions/src/scalars/strings/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ mod pad;
mod quote;
mod regexp_instr;
mod regexp_like;
mod regexp_replace;
mod regexp_substr;
mod repeat;
mod replace;
Expand Down Expand Up @@ -84,6 +85,7 @@ pub use pad::RightPadFunction;
pub use quote::QuoteFunction;
pub use regexp_instr::RegexpInStrFunction;
pub use regexp_like::RegexpLikeFunction;
pub use regexp_replace::RegexpReplaceFunction;
pub use regexp_substr::RegexpSubStrFunction;
pub use repeat::RepeatFunction;
pub use replace::ReplaceFunction;
Expand Down
Loading