Next implements the Datum interface.
(ctx *EvalContext)
| 3756 | |
| 3757 | // Next implements the Datum interface. |
| 3758 | func (d *DOidWrapper) Next(ctx *EvalContext) (Datum, bool) { |
| 3759 | next, ok := d.Wrapped.Next(ctx) |
| 3760 | return wrapWithOid(next, d.Oid), ok |
| 3761 | } |
| 3762 | |
| 3763 | // IsMax implements the Datum interface. |
| 3764 | func (d *DOidWrapper) IsMax(ctx *EvalContext) bool { |
nothing calls this directly
no test coverage detected