Prev implements the Datum interface.
(_ *EvalContext)
| 2425 | |
| 2426 | // Prev implements the Datum interface. |
| 2427 | func (d *DTimestampTZ) Prev(_ *EvalContext) (Datum, bool) { |
| 2428 | return &DTimestampTZ{Time: d.Add(-time.Microsecond)}, true |
| 2429 | } |
| 2430 | |
| 2431 | // Next implements the Datum interface. |
| 2432 | func (d *DTimestampTZ) Next(_ *EvalContext) (Datum, bool) { |