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

Method Format

pkg/sql/sem/tree/table_name.go:271–278  ·  view source on GitHub ↗

Format implements the NodeFormatter interface.

(ctx *FmtCtx)

Source from the content-addressed store, hash-verified

269
270// Format implements the NodeFormatter interface.
271func (n *TableIndexNames) Format(ctx *FmtCtx) {
272 sep := ""
273 for _, tni := range *n {
274 ctx.WriteString(sep)
275 ctx.FormatNode(tni)
276 sep = ", "
277 }
278}

Callers

nothing calls this directly

Calls 1

FormatNodeMethod · 0.80

Tested by

no test coverage detected