Min implements the Datum interface.
(ctx *EvalContext)
| 3778 | |
| 3779 | // Min implements the Datum interface. |
| 3780 | func (d *DOidWrapper) Min(ctx *EvalContext) (Datum, bool) { |
| 3781 | min, ok := d.Wrapped.Min(ctx) |
| 3782 | return wrapWithOid(min, d.Oid), ok |
| 3783 | } |
| 3784 | |
| 3785 | // AmbiguousFormat implements the Datum interface. |
| 3786 | func (d *DOidWrapper) AmbiguousFormat() bool { |
nothing calls this directly
no test coverage detected