Struct VariantArray

Source
pub struct VariantArray {
    inner: StructArray,
    metadata_ref: ArrayRef,
    value_ref: ArrayRef,
}
Expand description

An array of Parquet [Variant] values

A VariantArray wraps an Arrow [StructArray] that stores the underlying metadata and value fields, and adds convenience methods to access the Variants

See VariantArrayBuilder for constructing a VariantArray.

§Specification

  1. This code follows the conventions for storing variants in Arrow StructArray defined by Extension Type for Parquet Variant arrow and this document. At the time of this writing, this is not yet a standardized Arrow extension type.

Fields§

§inner: StructArray

StructArray of up to three fields:

  1. A required field named metadata which is binary, large_binary, or binary_view

  2. An optional field named value that is binary, large_binary, or binary_view

  3. An optional field named typed_value which can be any primitive type or be a list, large_list, list_view or struct

NOTE: It is also permissible for the metadata field to be Dictionary-Encoded, preferably (but not required) with an index type of int8.

§metadata_ref: ArrayRef

Reference to the metadata column of inner

§value_ref: ArrayRef

Reference to the value column of inner

Implementations§

Source§

impl VariantArray

Source

pub fn try_new(inner: ArrayRef) -> Result<Self, ArrowError>

Creates a new VariantArray from a [StructArray].

§Arguments
  • inner - The underlying [StructArray] that contains the variant data.
§Returns
  • A new instance of VariantArray.
§Errors:
  • If the StructArray does not contain the required fields
§Current support

This structure does not (yet) support the full Arrow Variant Array specification.

Only StructArrays with metadata and value fields that are BinaryViewArray are supported. Shredded values are not currently supported nor are using types other than BinaryViewArray

Source

pub fn inner(&self) -> &StructArray

Returns a reference to the underlying [StructArray].

Source

pub fn into_inner(self) -> StructArray

Returns the inner [StructArray], consuming self

Source

pub fn value(&self, index: usize) -> Variant<'_, '_>

Return the [Variant] instance stored at the given row

Panics if the index is out of bounds.

Note: Does not do deep validation of the [Variant], so it is up to the caller to ensure that the metadata and value were constructed correctly.

Source

fn find_metadata_field(array: &StructArray) -> Option<ArrayRef>

Source

fn find_value_field(array: &StructArray) -> Option<ArrayRef>

Source

pub fn metadata_field(&self) -> &ArrayRef

Return a reference to the metadata field of the [StructArray]

Source

pub fn value_field(&self) -> &ArrayRef

Return a reference to the value field of the StructArray

Trait Implementations§

Source§

impl Array for VariantArray

Source§

fn as_any(&self) -> &dyn Any

Returns the array as Any so that it can be downcasted to a specific implementation. Read more
Source§

fn to_data(&self) -> ArrayData

Returns the underlying data of this array
Source§

fn into_data(self) -> ArrayData

Returns the underlying data of this array Read more
Source§

fn data_type(&self) -> &DataType

Returns a reference to the [DataType] of this array. Read more
Source§

fn slice(&self, offset: usize, length: usize) -> ArrayRef

Returns a zero-copy slice of this array with the indicated offset and length. Read more
Source§

fn len(&self) -> usize

Returns the length (i.e., number of elements) of this array. Read more
Source§

fn is_empty(&self) -> bool

Returns whether this array is empty. Read more
Source§

fn offset(&self) -> usize

Returns the offset into the underlying data used by this array(-slice). Note that the underlying data can be shared by many arrays. This defaults to 0. Read more
Source§

fn nulls(&self) -> Option<&NullBuffer>

Returns the null buffer of this array if any. Read more
Source§

fn get_buffer_memory_size(&self) -> usize

Returns the total number of bytes of memory pointed to by this array. The buffers store bytes in the Arrow memory format, and include the data as well as the validity map. Note that this does not always correspond to the exact memory usage of an array, since multiple arrays can share the same buffers or slices thereof.
Source§

fn get_array_memory_size(&self) -> usize

Returns the total number of bytes of memory occupied physically by this array. This value will always be greater than returned by get_buffer_memory_size() and includes the overhead of the data structures that contain the pointers to the various buffers.
§

fn shrink_to_fit(&mut self)

Shrinks the capacity of any exclusively owned buffer as much as possible Read more
§

fn logical_nulls(&self) -> Option<NullBuffer>

Returns a potentially computed [NullBuffer] that represents the logical null values of this array, if any. Read more
§

fn is_null(&self, index: usize) -> bool

Returns whether the element at index is null according to [Array::nulls] Read more
§

fn is_valid(&self, index: usize) -> bool

Returns whether the element at index is not null, the opposite of [Self::is_null]. Read more
§

fn null_count(&self) -> usize

Returns the total number of physical null values in this array. Read more
§

fn logical_null_count(&self) -> usize

Returns the total number of logical null values in this array. Read more
§

fn is_nullable(&self) -> bool

Returns false if the array is guaranteed to not contain any logical nulls Read more
Source§

impl Debug for VariantArray

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

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
§

impl<T> Datum for T
where T: Array,

§

fn get(&self) -> (&dyn Array, bool)

Returns the value for this [Datum] and a boolean indicating if the value is scalar
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<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> Ungil for T
where T: Send,