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

Struct Select

pkg/sql/sem/tree/select.go:43–49  ·  view source on GitHub ↗

Select represents a SelectStatement with an ORDER and/or LIMIT.

Source from the content-addressed store, hash-verified

41
42// Select represents a SelectStatement with an ORDER and/or LIMIT.
43type Select struct {
44 With *With
45 Select SelectStatement
46 OrderBy OrderBy
47 Limit *Limit
48 Locking LockingClause
49}
50
51// Format implements the NodeFormatter interface.
52func (node *Select) Format(ctx *FmtCtx) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected