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

Method doc

pkg/sql/sem/tree/pretty.go:907–913  ·  view source on GitHub ↗
(p *PrettyCfg)

Source from the content-addressed store, hash-verified

905}
906
907func (node *OnJoinCond) doc(p *PrettyCfg) pretty.Doc {
908 e := node.Expr
909 if p.Simplify {
910 e = StripParens(e)
911 }
912 return p.nestUnder(pretty.Keyword("ON"), p.Doc(e))
913}
914
915func (node *Insert) doc(p *PrettyCfg) pretty.Doc {
916 items := make([]pretty.TableRow, 0, 8)

Callers

nothing calls this directly

Calls 4

KeywordFunction · 0.92
StripParensFunction · 0.85
nestUnderMethod · 0.80
DocMethod · 0.80

Tested by

no test coverage detected