MCPcopy Create free account
hub / github.com/apache/datafusion / interval_datetime_lit

Function interval_datetime_lit

datafusion/expr/src/expr_fn.rs:713–716  ·  view source on GitHub ↗
(value: &str)

Source from the content-addressed store, hash-verified

711}
712
713pub fn interval_datetime_lit(value: &str) -> Expr {
714 let interval = parse_interval_day_time(value).ok();
715 Expr::Literal(ScalarValue::IntervalDayTime(interval), None)
716}
717
718pub fn interval_month_day_nano_lit(value: &str) -> Expr {
719 let interval = parse_interval_month_day_nano(value).ok();

Callers 1

Calls 1

LiteralInterface · 0.70

Tested by 1

Used in the wild real call sites across dependent graphs

searching dependent graphs…