Round returns a new DTimestampTZ to the specified precision.
(precision time.Duration)
| 1110 | |
| 1111 | // Round returns a new DTimestampTZ to the specified precision. |
| 1112 | func (d *DTimestampTZ) Round(precision time.Duration) (*DTimestampTZ, error) { |
| 1113 | return MakeDTimestampTZ(d.Time, precision) |
| 1114 | } |
| 1115 | |
| 1116 | // ResolvedType implements the TypedExpr interface. |
| 1117 | func (*DTimestampTZ) ResolvedType() *types.T { |
nothing calls this directly
no test coverage detected