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

Struct HelpMessage

pkg/sql/parser/help.go:31–39  ·  view source on GitHub ↗

HelpMessage describes a contextual help message.

Source from the content-addressed store, hash-verified

29
30// HelpMessage describes a contextual help message.
31type HelpMessage struct {
32 // Command is set if the message is about a statement.
33 Command string
34 // Function is set if the message is about a built-in function.
35 Function string
36
37 // HelpMessageBody contains the details of the message.
38 HelpMessageBody
39}
40
41// String implements the fmt.String interface.
42func (h *HelpMessage) String() string {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected