Prev implements the Datum interface.
(ctx *EvalContext)
| 3750 | |
| 3751 | // Prev implements the Datum interface. |
| 3752 | func (d *DOidWrapper) Prev(ctx *EvalContext) (Datum, bool) { |
| 3753 | prev, ok := d.Wrapped.Prev(ctx) |
| 3754 | return wrapWithOid(prev, d.Oid), ok |
| 3755 | } |
| 3756 | |
| 3757 | // Next implements the Datum interface. |
| 3758 | func (d *DOidWrapper) Next(ctx *EvalContext) (Datum, bool) { |
nothing calls this directly
no test coverage detected