MCPcopy Create free account
hub / github.com/auxten/postgresql-parser / IsMin

Method IsMin

pkg/sql/sem/tree/datum.go:3065–3072  ·  view source on GitHub ↗

IsMin implements the Datum interface.

(ctx *EvalContext)

Source from the content-addressed store, hash-verified

3063
3064// IsMin implements the Datum interface.
3065func (d *DTuple) IsMin(ctx *EvalContext) bool {
3066 for _, v := range d.D {
3067 if !v.IsMin(ctx) {
3068 return false
3069 }
3070 }
3071 return true
3072}
3073
3074// AmbiguousFormat implements the Datum interface.
3075func (*DTuple) AmbiguousFormat() bool { return false }

Callers

nothing calls this directly

Calls 1

IsMinMethod · 0.65

Tested by

no test coverage detected