pub fn lead_with_default<'a, V, E, D>(
expr: E,
offset: usize,
default: D,
) -> WindowFnExpr<'a, V, E::SQLType, <E::Nullable as NullOr<D::Nullable>>::Output>Expand description
LEAD(expr, offset, default) — value of expr from N rows ahead with a default.
Nullability is the combination of the expression’s and default’s nullability.