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: ParquetOptionsGlobal 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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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