Struct arrow::array::UnionBuilder[][src]

pub struct UnionBuilder { /* fields omitted */ }
Expand description

Builder type for creating a new UnionArray.

Example: Dense Memory Layout

use arrow::array::UnionBuilder;
use arrow::datatypes::{Float64Type, Int32Type};

let mut builder = UnionBuilder::new_dense(3);
builder.append::<Int32Type>("a", 1).unwrap();
builder.append::<Float64Type>("b", 3.0).unwrap();
builder.append::<Int32Type>("a", 4).unwrap();
let union = builder.build().unwrap();

assert_eq!(union.type_id(0), 0_i8);
assert_eq!(union.type_id(1), 1_i8);
assert_eq!(union.type_id(2), 0_i8);

assert_eq!(union.value_offset(0), 0_i32);
assert_eq!(union.value_offset(1), 0_i32);
assert_eq!(union.value_offset(2), 1_i32);

Example: Sparse Memory Layout

use arrow::array::UnionBuilder;
use arrow::datatypes::{Float64Type, Int32Type};

let mut builder = UnionBuilder::new_sparse(3);
builder.append::<Int32Type>("a", 1).unwrap();
builder.append::<Float64Type>("b", 3.0).unwrap();
builder.append::<Int32Type>("a", 4).unwrap();
let union = builder.build().unwrap();

assert_eq!(union.type_id(0), 0_i8);
assert_eq!(union.type_id(1), 1_i8);
assert_eq!(union.type_id(2), 0_i8);

assert_eq!(union.value_offset(0), 0_i32);
assert_eq!(union.value_offset(1), 1_i32);
assert_eq!(union.value_offset(2), 2_i32);

Implementations

Creates a new dense array builder.

Creates a new sparse array builder.

Appends a null to this builder.

Appends a value to this builder.

Builds this builder creating a new UnionArray.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.