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

Method Next

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

Next implements the Datum interface.

(ctx *EvalContext)

Source from the content-addressed store, hash-verified

3756
3757// Next implements the Datum interface.
3758func (d *DOidWrapper) Next(ctx *EvalContext) (Datum, bool) {
3759 next, ok := d.Wrapped.Next(ctx)
3760 return wrapWithOid(next, d.Oid), ok
3761}
3762
3763// IsMax implements the Datum interface.
3764func (d *DOidWrapper) IsMax(ctx *EvalContext) bool {

Callers

nothing calls this directly

Calls 2

wrapWithOidFunction · 0.85
NextMethod · 0.65

Tested by

no test coverage detected