Next implements the Datum interface.
(ctx context.Context, cmpCtx CompareContext)
| 751 | |
| 752 | // Next implements the Datum interface. |
| 753 | func (d *DInt) Next(ctx context.Context, cmpCtx CompareContext) (Datum, bool) { |
| 754 | return NewDInt(*d + 1), true |
| 755 | } |
| 756 | |
| 757 | // IsMax implements the Datum interface. |
| 758 | func (d *DInt) IsMax(ctx context.Context, cmpCtx CompareContext) bool { |