MCPcopy Create free account
hub / github.com/dolthub/doltgresql / FQString

Method FQString

postgres/parser/sem/tree/type_name.go:74–82  ·  view source on GitHub ↗

FQString renders the type name in full, not omitting the prefix schema and catalog names. Suitable for logging, etc.

()

Source from the content-addressed store, hash-verified

72// FQString renders the type name in full, not omitting the prefix
73// schema and catalog names. Suitable for logging, etc.
74func (t *TypeName) FQString() string {
75 ctx := NewFmtCtx(FmtSimple)
76 ctx.FormatNode(&t.CatalogName)
77 ctx.WriteByte('.')
78 ctx.FormatNode(&t.SchemaName)
79 ctx.WriteByte('.')
80 ctx.FormatNode(&t.ObjectName)
81 return ctx.CloseAndGetString()
82}
83
84func (t *TypeName) objectName() {}
85

Callers

nothing calls this directly

Calls 3

FormatNodeMethod · 0.95
CloseAndGetStringMethod · 0.95
NewFmtCtxFunction · 0.85

Tested by

no test coverage detected