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

Method Next

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

Next implements the Datum interface.

(ctx *EvalContext)

Source from the content-addressed store, hash-verified

3636
3637// Next implements the Datum interface.
3638func (d *DOid) Next(ctx *EvalContext) (Datum, bool) {
3639 next, ok := d.DInt.Next(ctx)
3640 return &DOid{*next.(*DInt), d.semanticType, ""}, ok
3641}
3642
3643// Prev implements the Datum interface.
3644func (d *DOid) Prev(ctx *EvalContext) (Datum, bool) {

Callers

nothing calls this directly

Calls 1

NextMethod · 0.65

Tested by

no test coverage detected