pub struct DateToUtcTimestampSnowflakeTransform;Expand description
Convert date_to_utc_timestamp(d, tz) -> CONVERT_TIMEZONE(tz, ‘UTC’, CAST(d as TIMESTAMP_NTZ)) or if tz = ‘UTC’ CAST(d as TIMESTAMP_NTZ)
Implementations§
Source§impl DateToUtcTimestampSnowflakeTransform
impl DateToUtcTimestampSnowflakeTransform
pub fn new_dyn() -> Arc<dyn FunctionTransformer>
Trait Implementations§
Source§impl Clone for DateToUtcTimestampSnowflakeTransform
impl Clone for DateToUtcTimestampSnowflakeTransform
Source§fn clone(&self) -> DateToUtcTimestampSnowflakeTransform
fn clone(&self) -> DateToUtcTimestampSnowflakeTransform
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 moreAuto Trait Implementations§
impl Freeze for DateToUtcTimestampSnowflakeTransform
impl RefUnwindSafe for DateToUtcTimestampSnowflakeTransform
impl Send for DateToUtcTimestampSnowflakeTransform
impl Sync for DateToUtcTimestampSnowflakeTransform
impl Unpin for DateToUtcTimestampSnowflakeTransform
impl UnwindSafe for DateToUtcTimestampSnowflakeTransform
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