pub type SequenceResolver<'a> = dyn Fn(SequenceOp) -> Result<i64, EvalError> + 'a;Expand description
v7.17.0 — sequence-mutating callback used by apply_function
for nextval / currval / setval. Implemented by the
engine to thread &mut Catalog access through an immutable
&EvalContext.