Round returns a new DTimestampTZ to the specified precision.
(precision time.Duration)
| 2994 | |
| 2995 | // Round returns a new DTimestampTZ to the specified precision. |
| 2996 | func (d *DTimestampTZ) Round(precision time.Duration) (*DTimestampTZ, error) { |
| 2997 | return MakeDTimestampTZ(d.Time, precision) |
| 2998 | } |
| 2999 | |
| 3000 | // ResolvedType implements the TypedExpr interface. |
| 3001 | func (*DTimestampTZ) ResolvedType() *types.T { |
nothing calls this directly
no test coverage detected