Skip to content

Commit 2845e11

Browse files
committed
feat: remove format function
Signed-off-by: Dennis Zhuang <[email protected]>
1 parent d555b1d commit 2845e11

File tree

4 files changed

+0
-901
lines changed

4 files changed

+0
-901
lines changed

src/common/function/src/scalars/string.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,13 @@
1414

1515
//! String scalar functions
1616
17-
mod format;
1817
mod regexp_extract;
1918

20-
pub(crate) use format::FormatFunction;
2119
pub(crate) use regexp_extract::RegexpExtractFunction;
2220

2321
use crate::function_registry::FunctionRegistry;
2422

2523
/// Register all string functions
2624
pub fn register_string_functions(registry: &FunctionRegistry) {
27-
FormatFunction::register(registry);
2825
RegexpExtractFunction::register(registry);
2926
}

0 commit comments

Comments
 (0)