pub trait IntoArrowArray {
// Required methods
fn into_arrow_preferred(self) -> VortexResult<ArrowArrayRef>;
fn into_arrow(self, data_type: &DataType) -> VortexResult<ArrowArrayRef>;
}๐Deprecated:
Use execute_arrow(None, ctx) or execute_arrow(Some(dt), ctx) instead
Required Methodsยง
fn into_arrow_preferred(self) -> VortexResult<ArrowArrayRef>
๐Deprecated:
Use execute_arrow(None, ctx) instead
fn into_arrow(self, data_type: &DataType) -> VortexResult<ArrowArrayRef>
๐Deprecated:
Use execute_arrow(Some(data_type), ctx) instead