MCPcopy Create free account
hub / github.com/apache/datafusion / concat_ws

Function concat_ws

datafusion/functions/src/string/mod.rs:153–157  ·  view source on GitHub ↗
(delimiter: Expr, args: Vec<Expr>)

Source from the content-addressed store, hash-verified

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

Callers 4

test_simplify_concat_wsFunction · 0.50
test_sqlFunction · 0.50
criterion_benchmarkFunction · 0.50

Calls 2

insertMethod · 0.45
callMethod · 0.45

Tested by 3

test_simplify_concat_wsFunction · 0.40
test_sqlFunction · 0.40

Used in the wild real call sites across dependent graphs

searching dependent graphs…