Min implements the Datum interface.
(ctx context.Context, cmpCtx CompareContext)
| 5916 | |
| 5917 | // Min implements the Datum interface. |
| 5918 | func (d *DOidWrapper) Min(ctx context.Context, cmpCtx CompareContext) (Datum, bool) { |
| 5919 | min, ok := d.Wrapped.Min(ctx, cmpCtx) |
| 5920 | return wrapWithOid(min, d.Oid), ok |
| 5921 | } |
| 5922 | |
| 5923 | // AmbiguousFormat implements the Datum interface. |
| 5924 | func (d *DOidWrapper) AmbiguousFormat() bool { |
nothing calls this directly
no test coverage detected