Round returns a new DTimestamp to the specified precision.
(precision time.Duration)
| 2189 | |
| 2190 | // Round returns a new DTimestamp to the specified precision. |
| 2191 | func (d *DTimestamp) Round(precision time.Duration) *DTimestamp { |
| 2192 | return MakeDTimestamp(d.Time, precision) |
| 2193 | } |
| 2194 | |
| 2195 | // ResolvedType implements the TypedExpr interface. |
| 2196 | func (*DTimestamp) ResolvedType() *types.T { |
nothing calls this directly
no test coverage detected