MCPcopy Create free account
hub / github.com/cockroachdb/cockroachdb-parser / Format

Method Format

pkg/sql/sem/tree/routine.go:219–224  ·  view source on GitHub ↗

Format is part of the Expr interface.

(ctx *FmtCtx)

Source from the content-addressed store, hash-verified

217
218// Format is part of the Expr interface.
219func (node *RoutineExpr) Format(ctx *FmtCtx) {
220 ctx.FormatName(node.Name)
221 ctx.WriteByte('(')
222 ctx.FormatNode(&node.Args)
223 ctx.WriteByte(')')
224}
225
226// Walk is part of the Expr interface.
227func (node *RoutineExpr) Walk(v Visitor) Expr {

Callers

nothing calls this directly

Calls 2

FormatNameMethod · 0.80
FormatNodeMethod · 0.80

Tested by

no test coverage detected