(delimiter: Expr, args: Vec<Expr>)
| 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 { |
| 154 | let mut args = args; |
| 155 | args.insert(0, delimiter); |
| 156 | super::concat_ws().call(args) |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | /// Returns all DataFusion functions defined in this package |
searching dependent graphs…