risingwave_expr_impl/scalar/
string_to_array.rs1use auto_enums::auto_enum;
16use risingwave_common::array::{ListValue, Utf8Array};
17use risingwave_expr::function;
18
19#[auto_enum(Iterator)]
20fn string_to_array_inner<'a>(s: &'a str, sep: Option<&'a str>) -> impl Iterator<Item = &'a str> {
21 match s.is_empty() {
22 true => std::iter::empty(),
23 #[nested]
24 _ => match sep {
25 Some(sep) if sep.is_empty() => std::iter::once(s),
26 Some(sep) => s.split(sep),
27 None => s.char_indices().map(move |(index, ch)| {
28 let len = ch.len_utf8();
29 &s[index..index + len]
30 }),
31 },
32 }
33}
34
35#[function("string_to_array(varchar, varchar) -> varchar[]")]
37pub fn string_to_array2(s: &str, sep: Option<&str>) -> ListValue {
38 ListValue::new(string_to_array_inner(s, sep).collect::<Utf8Array>().into())
39}
40
41#[function("string_to_array(varchar, varchar, varchar) -> varchar[]")]
42pub fn string_to_array3(s: &str, sep: Option<&str>, null: Option<&str>) -> ListValue {
43 let Some(null) = null else {
44 return string_to_array2(s, sep);
45 };
46 ListValue::new(
47 string_to_array_inner(s, sep)
48 .map(|x| if x == null { None } else { Some(x) })
49 .collect::<Utf8Array>()
50 .into(),
51 )
52}