Next implements the Datum interface.
(_ *EvalContext)
| 2430 | |
| 2431 | // Next implements the Datum interface. |
| 2432 | func (d *DTimestampTZ) Next(_ *EvalContext) (Datum, bool) { |
| 2433 | return &DTimestampTZ{Time: d.Add(time.Microsecond)}, true |
| 2434 | } |
| 2435 | |
| 2436 | // IsMax implements the Datum interface. |
| 2437 | func (d *DTimestampTZ) IsMax(_ *EvalContext) bool { |