Round returns a new DTimestampTZ to the specified precision.
(precision time.Duration)
| 2406 | |
| 2407 | // Round returns a new DTimestampTZ to the specified precision. |
| 2408 | func (d *DTimestampTZ) Round(precision time.Duration) *DTimestampTZ { |
| 2409 | return MakeDTimestampTZ(d.Time, precision) |
| 2410 | } |
| 2411 | |
| 2412 | // ResolvedType implements the TypedExpr interface. |
| 2413 | func (*DTimestampTZ) ResolvedType() *types.T { |
nothing calls this directly
no test coverage detected