Max implements the Datum interface.
(ctx context.Context, cmpCtx CompareContext)
| 5910 | |
| 5911 | // Max implements the Datum interface. |
| 5912 | func (d *DOidWrapper) Max(ctx context.Context, cmpCtx CompareContext) (Datum, bool) { |
| 5913 | max, ok := d.Wrapped.Max(ctx, cmpCtx) |
| 5914 | return wrapWithOid(max, d.Oid), ok |
| 5915 | } |
| 5916 | |
| 5917 | // Min implements the Datum interface. |
| 5918 | func (d *DOidWrapper) Min(ctx context.Context, cmpCtx CompareContext) (Datum, bool) { |
nothing calls this directly
no test coverage detected