Max implements the Datum interface.
(ctx *EvalContext)
| 3772 | |
| 3773 | // Max implements the Datum interface. |
| 3774 | func (d *DOidWrapper) Max(ctx *EvalContext) (Datum, bool) { |
| 3775 | max, ok := d.Wrapped.Max(ctx) |
| 3776 | return wrapWithOid(max, d.Oid), ok |
| 3777 | } |
| 3778 | |
| 3779 | // Min implements the Datum interface. |
| 3780 | func (d *DOidWrapper) Min(ctx *EvalContext) (Datum, bool) { |
nothing calls this directly
no test coverage detected