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

Struct SelectClause

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

SelectClause represents a SELECT statement.

Source from the content-addressed store, hash-verified

77
78// SelectClause represents a SELECT statement.
79type SelectClause struct {
80 Distinct bool
81 DistinctOn DistinctOn
82 Exprs SelectExprs
83 From From
84 Where *Where
85 GroupBy GroupBy
86 Having *Where
87 Window Window
88 TableSelect bool
89}
90
91// Format implements the NodeFormatter interface.
92func (node *SelectClause) Format(ctx *FmtCtx) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected