(args: Vec<Expr>)
| 146 | |
| 147 | #[doc = "Removes all characters, spaces by default, from both sides of a string"] |
| 148 | pub fn trim(args: Vec<Expr>) -> Expr { |
| 149 | super::btrim().call(args) |
| 150 | } |
| 151 | |
| 152 | #[doc = "Concatenates all but the first argument, with separators. The first argument is used as the separator string, and should not be NULL. Other NULL arguments are ignored."] |
| 153 | pub fn concat_ws(delimiter: Expr, args: Vec<Expr>) -> Expr { |
no test coverage detected
searching dependent graphs…