risingwave_expr_impl/scalar/
length.rs1use risingwave_expr::function;
16
17#[function("length(varchar) -> int4")]
18#[function("char_length(varchar) -> int4")]
19pub fn char_length(s: &str) -> i32 {
20 s.chars().count() as i32
21}
22
23#[function("octet_length(varchar) -> int4")]
24#[function("length(bytea) -> int4")]
25#[function("octet_length(bytea) -> int4")]
26pub fn octet_length(s: impl AsRef<[u8]>) -> i32 {
27 s.as_ref().len() as i32
28}
29
30#[function("bit_length(varchar) -> int4")]
31#[function("bit_length(bytea) -> int4")]
32pub fn bit_length(s: impl AsRef<[u8]>) -> i32 {
33 octet_length(s) * 8
34}
35
36#[cfg(test)]
37mod tests {
38
39 use super::*;
40
41 #[test]
42 fn test_length() {
43 let cases = [("hello world", 11), ("hello rust", 10)];
44
45 for (s, expected) in cases {
46 assert_eq!(char_length(s), expected);
47 }
48 }
49
50 #[test]
51 fn test_octet_length() {
52 let cases = [("hello world", 11), ("你好", 6), ("😇哈哈hhh", 13)];
53
54 for (s, expected) in cases {
55 assert_eq!(octet_length(s), expected);
56 }
57 }
58
59 #[test]
60 fn test_bit_length() {
61 let cases = [
62 ("hello world", 11 * 8),
63 ("你好", 6 * 8),
64 ("😇哈哈hhh", 13 * 8),
65 ];
66
67 for (s, expected) in cases {
68 assert_eq!(bit_length(s), expected);
69 }
70 }
71}