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

Method IsMax

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

IsMax implements the Datum interface.

(ctx *EvalContext)

Source from the content-addressed store, hash-verified

3053
3054// IsMax implements the Datum interface.
3055func (d *DTuple) IsMax(ctx *EvalContext) bool {
3056 for _, v := range d.D {
3057 if !v.IsMax(ctx) {
3058 return false
3059 }
3060 }
3061 return true
3062}
3063
3064// IsMin implements the Datum interface.
3065func (d *DTuple) IsMin(ctx *EvalContext) bool {

Callers

nothing calls this directly

Calls 1

IsMaxMethod · 0.65

Tested by

no test coverage detected