Skip to content

FrameBoundary

type FrameBoundary =
| {
type: "currentRow";
}
| {
type: "unbounded";
}
| {
type: "value";
value: Expression;
};

Defined in: plan/logical-plan.ts:72