Struct vegafusion_sql::dialect::transforms::utc_timestamp_to_str::UtcTimestampToStrDatabricksTransformer
source · pub struct UtcTimestampToStrDatabricksTransformer;Expand description
Convert utc_timestamp_to_str(ts, tz) -> replace(date_format(from_utc_timestamp(ts, tz), ‘y-MM-dd HH:mm:ss.SSS’), ’ ’, ‘T’) or if tz == ‘UTC’ replace(date_format(ts, ‘y-MM-dd HH:mm:ss.SSS’), ’ ’, ‘T’)
Implementations§
source§impl UtcTimestampToStrDatabricksTransformer
impl UtcTimestampToStrDatabricksTransformer
pub fn new_dyn() -> Arc<dyn FunctionTransformer>
Trait Implementations§
source§impl Clone for UtcTimestampToStrDatabricksTransformer
impl Clone for UtcTimestampToStrDatabricksTransformer
source§fn clone(&self) -> UtcTimestampToStrDatabricksTransformer
fn clone(&self) -> UtcTimestampToStrDatabricksTransformer
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 RefUnwindSafe for UtcTimestampToStrDatabricksTransformer
impl Send for UtcTimestampToStrDatabricksTransformer
impl Sync for UtcTimestampToStrDatabricksTransformer
impl Unpin for UtcTimestampToStrDatabricksTransformer
impl UnwindSafe for UtcTimestampToStrDatabricksTransformer
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