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

Method output_column

datafusion/physical-plan/src/async_func.rs:377–381  ·  view source on GitHub ↗

return the output column for the async function at index idx

(&self, idx: usize)

Source from the content-addressed store, hash-verified

375
376 /// return the output column for the async function at index idx
377 pub fn output_column(&self, idx: usize) -> Arc<dyn PhysicalExpr> {
378 let async_expr = &self.async_exprs[idx];
379 let output_idx = self.num_input_columns + idx;
380 Arc::new(Column::new(async_expr.name(), output_idx))
381 }
382}
383
384#[cfg(test)]

Callers 1

map_exprMethod · 0.80

Calls 2

newFunction · 0.85
nameMethod · 0.45

Tested by

no test coverage detected