Round returns a new DTimeTZ to the specified precision.
(precision time.Duration)
| 2102 | |
| 2103 | // Round returns a new DTimeTZ to the specified precision. |
| 2104 | func (d *DTimeTZ) Round(precision time.Duration) *DTimeTZ { |
| 2105 | return NewDTimeTZ(d.TimeTZ.Round(precision)) |
| 2106 | } |
| 2107 | |
| 2108 | // Min implements the Datum interface. |
| 2109 | func (d *DTimeTZ) Min(_ *EvalContext) (Datum, bool) { |
nothing calls this directly
no test coverage detected