arrow_row

Struct Rows

Source
pub struct Rows {
    pub(crate) buffer: Vec<u8>,
    pub(crate) offsets: Vec<usize>,
    pub(crate) config: RowConfig,
}
Expand description

A row-oriented representation of arrow data, that is normalized for comparison.

See the module level documentation and RowConverter for more details.

Fields§

§buffer: Vec<u8>

Underlying row bytes

§offsets: Vec<usize>

Row i has data &buffer[offsets[i]..offsets[i+1]]

§config: RowConfig

The config for these rows

Implementations§

Source§

impl Rows

Source

pub fn push(&mut self, row: Row<'_>)

Append a Row to this Rows

Source

pub fn row(&self, row: usize) -> Row<'_>

Returns the row at index row

Source

pub unsafe fn row_unchecked(&self, index: usize) -> Row<'_>

Returns the row at index without bounds checking

§Safety

Caller must ensure that index is less than the number of offsets (#rows + 1)

Source

pub fn clear(&mut self)

Sets the length of this Rows to 0

Source

pub fn num_rows(&self) -> usize

Returns the number of Row in this Rows

Source

pub fn iter(&self) -> RowsIter<'_>

Returns an iterator over the Row in this Rows

Source

pub fn size(&self) -> usize

Returns the size of this instance in bytes

Includes the size of Self.

Source

pub fn try_into_binary(self) -> Result<BinaryArray, ArrowError>

Create a [BinaryArray] from the Rows data without reallocating the underlying bytes.

let converter = RowConverter::new(vec![SortField::new(DataType::Utf8)]).unwrap();
let array = StringArray::from(vec!["hello", "world", "a", "a", "hello"]);
let rows = converter.convert_columns(&[Arc::new(array)]).unwrap();

// We can convert rows into binary format and back.
let values: Vec<OwnedRow> = rows.iter().map(|r| r.owned()).collect();
let binary = rows.try_into_binary().expect("known-small array");
let parser = converter.parser();
let parsed: Vec<OwnedRow> =
  binary.iter().flatten().map(|b| parser.parse(b).owned()).collect();
assert_eq!(values, parsed);
§Errors

This function will return an error if there is more data than can be stored in a [BinaryArray] – i.e. if the total data size is more than 2GiB.

Trait Implementations§

Source§

impl Debug for Rows

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a> IntoIterator for &'a Rows

Source§

type Item = Row<'a>

The type of the elements being iterated over.
Source§

type IntoIter = RowsIter<'a>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more

Auto Trait Implementations§

§

impl Freeze for Rows

§

impl RefUnwindSafe for Rows

§

impl Send for Rows

§

impl Sync for Rows

§

impl Unpin for Rows

§

impl UnwindSafe for Rows

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,