pub trait ResultToI64 { // Required method fn to_i64(&self) -> i64; }
Trait for converting aggregation results to i64 for output.
This is needed to produce Arrow RecordBatch outputs with numeric results.
RecordBatch
Converts the result to an i64 value.