Next implements the Datum interface.
(ctx *EvalContext)
| 3636 | |
| 3637 | // Next implements the Datum interface. |
| 3638 | func (d *DOid) Next(ctx *EvalContext) (Datum, bool) { |
| 3639 | next, ok := d.DInt.Next(ctx) |
| 3640 | return &DOid{*next.(*DInt), d.semanticType, ""}, ok |
| 3641 | } |
| 3642 | |
| 3643 | // Prev implements the Datum interface. |
| 3644 | func (d *DOid) Prev(ctx *EvalContext) (Datum, bool) { |