We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d555b1d commit 2845e11Copy full SHA for 2845e11
src/common/function/src/scalars/string.rs
@@ -14,16 +14,13 @@
14
15
//! String scalar functions
16
17
-mod format;
18
mod regexp_extract;
19
20
-pub(crate) use format::FormatFunction;
21
pub(crate) use regexp_extract::RegexpExtractFunction;
22
23
use crate::function_registry::FunctionRegistry;
24
25
/// Register all string functions
26
pub fn register_string_functions(registry: &FunctionRegistry) {
27
- FormatFunction::register(registry);
28
RegexpExtractFunction::register(registry);
29
}
0 commit comments