Struct parquet_format_safe::ColumnIndex
source · pub struct ColumnIndex {
pub null_pages: Vec<bool>,
pub min_values: Vec<Vec<u8>>,
pub max_values: Vec<Vec<u8>>,
pub boundary_order: BoundaryOrder,
pub null_counts: Option<Vec<i64>>,
}
Expand description
Description for ColumnIndex.
Each
Fields§
§null_pages: Vec<bool>
A list of Boolean values to determine the validity of the corresponding min and max values. If true, a page contains only null values, and writers have to set the corresponding entries in min_values and max_values to byte[0], so that all lists have the same length. If false, the corresponding entries in min_values and max_values must be valid.
min_values: Vec<Vec<u8>>
Two lists containing lower and upper bounds for the values of each page determined by the ColumnOrder of the column. These may be the actual minimum and maximum values found on a page, but can also be (more compact) values that do not exist on a page. For example, instead of storing ““Blart Versenwald III”, a writer may set min_values[i]=“B”, max_values[i]=“C”. Such more compact values must still be valid values within the column’s logical type. Readers must make sure that list entries are populated before using them by inspecting null_pages.
max_values: Vec<Vec<u8>>
§boundary_order: BoundaryOrder
Stores whether both min_values and max_values are orderd and if so, in which direction. This allows readers to perform binary searches in both lists. Readers cannot assume that max_values[i] <= min_values[i+1], even if the lists are ordered.
null_counts: Option<Vec<i64>>
A list containing the number of null values for each page *
Implementations§
source§impl ColumnIndex
impl ColumnIndex
pub fn new<F5>( null_pages: Vec<bool>, min_values: Vec<Vec<u8>>, max_values: Vec<Vec<u8>>, boundary_order: BoundaryOrder, null_counts: F5 ) -> ColumnIndex
pub fn read_from_in_protocol<T: TInputProtocol>( i_prot: &mut T ) -> Result<ColumnIndex>
pub async fn stream_from_in_protocol<T: TInputStreamProtocol>( i_prot: &mut T ) -> Result<ColumnIndex>
pub fn write_to_out_protocol<T: TOutputProtocol>( &self, o_prot: &mut T ) -> Result<usize>
pub async fn write_to_out_stream_protocol<T: TOutputStreamProtocol>( &self, o_prot: &mut T ) -> Result<usize>
Trait Implementations§
source§impl AsyncReadThrift for ColumnIndex
impl AsyncReadThrift for ColumnIndex
fn stream_from_in_protocol<'life0, 'async_trait, T>(
i_prot: &'life0 mut T
) -> Pin<Box<dyn Future<Output = Result<ColumnIndex>> + Send + 'async_trait>>where
T: 'async_trait + TInputStreamProtocol,
'life0: 'async_trait,
source§impl Clone for ColumnIndex
impl Clone for ColumnIndex
source§fn clone(&self) -> ColumnIndex
fn clone(&self) -> ColumnIndex
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ColumnIndex
impl Debug for ColumnIndex
source§impl Hash for ColumnIndex
impl Hash for ColumnIndex
source§impl Ord for ColumnIndex
impl Ord for ColumnIndex
source§fn cmp(&self, other: &ColumnIndex) -> Ordering
fn cmp(&self, other: &ColumnIndex) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl PartialEq for ColumnIndex
impl PartialEq for ColumnIndex
source§fn eq(&self, other: &ColumnIndex) -> bool
fn eq(&self, other: &ColumnIndex) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for ColumnIndex
impl PartialOrd for ColumnIndex
source§fn partial_cmp(&self, other: &ColumnIndex) -> Option<Ordering>
fn partial_cmp(&self, other: &ColumnIndex) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read more