Merge branch 'main' into json-extract

This commit is contained in:
Kacper Madej 2024-12-31 15:43:41 +07:00
commit 692301e72c
28 changed files with 702 additions and 187 deletions

View file

@ -17,9 +17,9 @@ impl Display for JsonFunc {
f,
"{}",
match self {
JsonFunc::Json => "json".to_string(),
JsonFunc::JsonArray => "json_array".to_string(),
JsonFunc::JsonExtract => "json_extract".to_string(),
Self::Json => "json".to_string(),
Self::JsonArray => "json_array".to_string(),
Self::JsonExtract => "json_extract".to_string(),
Self::JsonArrayLength => "json_array_length".to_string(),
}
)