pub struct IcebergIngestOptions {
pub table: String,
pub mode: String,
pub metadata_filename: Option<String>,
pub version_as_of: Option<i64>,
}Expand description
Parameters for an Iceberg ingest. Mirrors LoadFileParams but with
Iceberg-specific knobs and no schema-override support (hyperd derives
the schema from the Iceberg metadata, so overrides would have no
obvious target column set to apply against).
Fields§
§table: StringTarget table name.
mode: String"replace" (drops + CTAS) or "append" (INSERT INTO … SELECT).
metadata_filename: Option<String>Optional specific metadata filename to pin a snapshot, e.g.
"v2.metadata.json". If omitted, hyperd uses whatever
metadata/version-hint.text (or the latest vN.metadata.json)
points at.
version_as_of: Option<i64>Optional snapshot version to read as of. Mutually understandable
with metadata_filename; hyperd handles the interaction.
Trait Implementations§
Source§impl Clone for IcebergIngestOptions
impl Clone for IcebergIngestOptions
Source§fn clone(&self) -> IcebergIngestOptions
fn clone(&self) -> IcebergIngestOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for IcebergIngestOptions
impl RefUnwindSafe for IcebergIngestOptions
impl Send for IcebergIngestOptions
impl Sync for IcebergIngestOptions
impl Unpin for IcebergIngestOptions
impl UnsafeUnpin for IcebergIngestOptions
impl UnwindSafe for IcebergIngestOptions
Blanket Implementations§
impl<T> Allocation for T
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§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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request