pub struct RowGroup {
pub columns: Vec<ColumnChunk>,
pub total_byte_size: i64,
pub num_rows: i64,
pub sorting_columns: Option<Vec<SortingColumn>>,
pub file_offset: Option<i64>,
pub total_compressed_size: Option<i64>,
pub ordinal: Option<i16>,
}The format module is no longer maintained, and will be removed in 59.0.0
Fields§
§columns: Vec<ColumnChunk>The format module is no longer maintained, and will be removed in 59.0.0
Metadata for each column chunk in this row group. This list must have the same order as the SchemaElement list in FileMetaData.
total_byte_size: i64The format module is no longer maintained, and will be removed in 59.0.0
Total byte size of all the uncompressed column data in this row group *
num_rows: i64The format module is no longer maintained, and will be removed in 59.0.0
Number of rows in this row group *
sorting_columns: Option<Vec<SortingColumn>>The format module is no longer maintained, and will be removed in 59.0.0
If set, specifies a sort ordering of the rows in this RowGroup. The sorting columns can be a subset of all the columns.
file_offset: Option<i64>The format module is no longer maintained, and will be removed in 59.0.0
Byte offset from beginning of file to first page (data or dictionary) in this row group *
total_compressed_size: Option<i64>The format module is no longer maintained, and will be removed in 59.0.0
Total byte size of all compressed (and potentially encrypted) column data in this row group *
ordinal: Option<i16>The format module is no longer maintained, and will be removed in 59.0.0
Row group ordinal in the file *
Implementations§
Source§impl RowGroup
impl RowGroup
Trait Implementations§
Source§impl Ord for RowGroup
impl Ord for RowGroup
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialOrd for RowGroup
impl PartialOrd for RowGroup
Source§impl TSerializable for RowGroup
impl TSerializable for RowGroup
Source§fn read_from_in_protocol<T: TInputProtocol>(i_prot: &mut T) -> Result<RowGroup>
fn read_from_in_protocol<T: TInputProtocol>(i_prot: &mut T) -> Result<RowGroup>
Source§fn write_to_out_protocol<T: TOutputProtocol>(
&self,
o_prot: &mut T,
) -> Result<()>
fn write_to_out_protocol<T: TOutputProtocol>( &self, o_prot: &mut T, ) -> Result<()>
impl Eq for RowGroup
impl StructuralPartialEq for RowGroup
Auto Trait Implementations§
impl Freeze for RowGroup
impl RefUnwindSafe for RowGroup
impl Send for RowGroup
impl Sync for RowGroup
impl Unpin for RowGroup
impl UnsafeUnpin for RowGroup
impl UnwindSafe for RowGroup
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.