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

Method Args

pkg/sql/sem/tree/window_funcs.go:502–504  ·  view source on GitHub ↗

Args returns the current argument set in the window frame.

(ctx context.Context)

Source from the content-addressed store, hash-verified

500
501// Args returns the current argument set in the window frame.
502func (wfr *WindowFrameRun) Args(ctx context.Context) (Datums, error) {
503 return wfr.ArgsWithRowOffset(ctx, 0)
504}
505
506// ArgsWithRowOffset returns the argument set at the given offset in the window frame.
507func (wfr *WindowFrameRun) ArgsWithRowOffset(ctx context.Context, offset int) (Datums, error) {

Callers

nothing calls this directly

Calls 1

ArgsWithRowOffsetMethod · 0.95

Tested by

no test coverage detected