Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
datafusion::logical_plan::create_udaf - Rust
[go: Go Back, main page]

[][src]Function datafusion::logical_plan::create_udaf

pub fn create_udaf(
    name: &str,
    input_type: DataType,
    return_type: Arc<DataType>,
    accumulator: AccumulatorFunctionImplementation,
    state_type: Arc<Vec<DataType>>
) -> AggregateUDF

Creates a new UDAF with a specific signature, state type and return type. The signature and state type must match the Acumulator's implementation.