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

Function schema_name_from_exprs

datafusion/expr/src/expr.rs:3446–3448  ·  view source on GitHub ↗

Get schema_name for Vector of expressions

(exprs: &[Expr])

Source from the content-addressed store, hash-verified

3444
3445/// Get schema_name for Vector of expressions
3446pub fn schema_name_from_exprs(exprs: &[Expr]) -> Result<String, fmt::Error> {
3447 schema_name_from_exprs_inner(exprs, ", ")
3448}
3449
3450fn schema_name_from_exprs_inner(exprs: &[Expr], sep: &str) -> Result<String, fmt::Error> {
3451 let mut s = String::new();

Callers 1

fmtMethod · 0.85

Calls 1

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…