pub trait IntoArrowArray {
    // Required methods
    fn into_arrow_preferred(self) -> VortexResult<ArrayRef>;
    fn into_arrow(self, data_type: &DataType) -> VortexResult<ArrayRef>;
}pub trait IntoArrowArray {
    // Required methods
    fn into_arrow_preferred(self) -> VortexResult<ArrayRef>;
    fn into_arrow(self, data_type: &DataType) -> VortexResult<ArrayRef>;
}