Next implements the Datum interface.
(_ *EvalContext)
| 2291 | |
| 2292 | // Next implements the Datum interface. |
| 2293 | func (d *DTimestamp) Next(_ *EvalContext) (Datum, bool) { |
| 2294 | return &DTimestamp{Time: d.Add(time.Microsecond)}, true |
| 2295 | } |
| 2296 | |
| 2297 | // IsMax implements the Datum interface. |
| 2298 | func (d *DTimestamp) IsMax(_ *EvalContext) bool { |