pub struct TemporalProbeConfig {
pub left_table: String,
pub right_table: String,
pub left_alias: Option<String>,
pub right_alias: Option<String>,
pub key_columns: Vec<String>,
pub left_time_column: String,
pub right_time_column: String,
pub expanded_offsets_ms: Vec<i64>,
pub probe_alias: String,
}Expand description
Configuration for the temporal probe join operator.
Fields§
§left_table: String§right_table: String§left_alias: Option<String>§right_alias: Option<String>§key_columns: Vec<String>§left_time_column: String§right_time_column: String§expanded_offsets_ms: Vec<i64>Sorted, deduplicated offsets in milliseconds.
probe_alias: StringProbe pseudo-table alias (the AS p in the SQL).
Implementations§
Source§impl TemporalProbeConfig
impl TemporalProbeConfig
Sourcepub fn new(
left_table: String,
right_table: String,
left_alias: Option<String>,
right_alias: Option<String>,
key_columns: Vec<String>,
left_time_column: String,
right_time_column: String,
offsets: &ProbeOffsetSpec,
probe_alias: String,
) -> Self
pub fn new( left_table: String, right_table: String, left_alias: Option<String>, right_alias: Option<String>, key_columns: Vec<String>, left_time_column: String, right_time_column: String, offsets: &ProbeOffsetSpec, probe_alias: String, ) -> Self
Create a new config, expanding offsets immediately.
Sourcepub fn max_offset_ms(&self) -> i64
pub fn max_offset_ms(&self) -> i64
Maximum offset in milliseconds.
Sourcepub fn min_offset_ms(&self) -> i64
pub fn min_offset_ms(&self) -> i64
Minimum offset in milliseconds. Negative means look-back.
Trait Implementations§
Source§impl Clone for TemporalProbeConfig
impl Clone for TemporalProbeConfig
Source§fn clone(&self) -> TemporalProbeConfig
fn clone(&self) -> TemporalProbeConfig
Returns a duplicate 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 Debug for TemporalProbeConfig
impl Debug for TemporalProbeConfig
Auto Trait Implementations§
impl Freeze for TemporalProbeConfig
impl RefUnwindSafe for TemporalProbeConfig
impl Send for TemporalProbeConfig
impl Sync for TemporalProbeConfig
impl Unpin for TemporalProbeConfig
impl UnsafeUnpin for TemporalProbeConfig
impl UnwindSafe for TemporalProbeConfig
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§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