WIP commit on glob support

This commit is contained in:
rjhallsted
2024-09-16 15:51:32 -07:00
parent 19d2d92115
commit b87b874ed0
5 changed files with 52 additions and 8 deletions

View File

@@ -44,6 +44,7 @@ pub enum ScalarFunc {
Coalesce,
Concat,
ConcatWs,
Glob,
IfNull,
Like,
Abs,
@@ -75,6 +76,7 @@ impl ToString for ScalarFunc {
ScalarFunc::Coalesce => "coalesce".to_string(),
ScalarFunc::Concat => "concat".to_string(),
ScalarFunc::ConcatWs => "concat_ws".to_string(),
ScalarFunc::Glob => "glob".to_string(),
ScalarFunc::IfNull => "ifnull".to_string(),
ScalarFunc::Like => "like(2)".to_string(),
ScalarFunc::Abs => "abs".to_string(),