pub struct TableParquetOptions {
pub global: ParquetOptions,
pub column_specific_options: HashMap<String, ParquetColumnOptions>,
pub key_value_metadata: HashMap<String, Option<String>>,
}
Expand description
Options that control how Parquet files are read, including global options that apply to all columns and optional column-specific overrides
Closely tied to ParquetWriterOptions
.
Properties not included in TableParquetOptions
may not be configurable at the external API
(e.g. sorting_columns).
Fields§
§global: ParquetOptions
Global Parquet options that propagates to all columns.
column_specific_options: HashMap<String, ParquetColumnOptions>
Column specific options. Default usage is parquet.XX::column.
key_value_metadata: HashMap<String, Option<String>>
Additional file-level metadata to include. Inserted into the key_value_metadata
for the written FileMetaData
.
Multiple entries are permitted
OPTIONS (
'format.metadata::key1' '',
'format.metadata::key2' 'value',
'format.metadata::key3' 'value has spaces',
'format.metadata::key4' 'value has special chars :: :',
'format.metadata::key_dupe' 'original will be overwritten',
'format.metadata::key_dupe' 'final'
)
Implementations§
Source§impl TableParquetOptions
impl TableParquetOptions
Sourcepub fn new() -> TableParquetOptions
pub fn new() -> TableParquetOptions
Return new default TableParquetOptions
Trait Implementations§
Source§impl Clone for TableParquetOptions
impl Clone for TableParquetOptions
Source§fn clone(&self) -> TableParquetOptions
fn clone(&self) -> TableParquetOptions
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl ConfigField for TableParquetOptions
impl ConfigField for TableParquetOptions
Source§impl Debug for TableParquetOptions
impl Debug for TableParquetOptions
Source§impl Default for TableParquetOptions
impl Default for TableParquetOptions
Source§fn default() -> TableParquetOptions
fn default() -> TableParquetOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for TableParquetOptions
impl PartialEq for TableParquetOptions
Source§impl TryFrom<&TableParquetOptions> for ParquetWriterOptions
impl TryFrom<&TableParquetOptions> for ParquetWriterOptions
Source§type Error = DataFusionError
type Error = DataFusionError
The type returned in the event of a conversion error.
Source§fn try_from(
parquet_table_options: &TableParquetOptions,
) -> Result<ParquetWriterOptions, DataFusionError>
fn try_from( parquet_table_options: &TableParquetOptions, ) -> Result<ParquetWriterOptions, DataFusionError>
Performs the conversion.
impl StructuralPartialEq for TableParquetOptions
Auto Trait Implementations§
impl Freeze for TableParquetOptions
impl RefUnwindSafe for TableParquetOptions
impl Send for TableParquetOptions
impl Sync for TableParquetOptions
impl Unpin for TableParquetOptions
impl UnwindSafe for TableParquetOptions
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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more