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

Method Prev

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

Prev implements the Datum interface.

(ctx *EvalContext)

Source from the content-addressed store, hash-verified

3750
3751// Prev implements the Datum interface.
3752func (d *DOidWrapper) Prev(ctx *EvalContext) (Datum, bool) {
3753 prev, ok := d.Wrapped.Prev(ctx)
3754 return wrapWithOid(prev, d.Oid), ok
3755}
3756
3757// Next implements the Datum interface.
3758func (d *DOidWrapper) Next(ctx *EvalContext) (Datum, bool) {

Callers

nothing calls this directly

Calls 2

wrapWithOidFunction · 0.85
PrevMethod · 0.65

Tested by

no test coverage detected