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

Method doc

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

Source from the content-addressed store, hash-verified

1364}
1365
1366func (node *NullIfExpr) doc(p *PrettyCfg) pretty.Doc {
1367 return p.bracketKeyword("NULLIF", "(",
1368 p.commaSeparated(
1369 p.Doc(node.Expr1),
1370 p.Doc(node.Expr2),
1371 ), ")", "")
1372}
1373
1374func (node *PartitionBy) doc(p *PrettyCfg) pretty.Doc {
1375 // Final layout:

Callers

nothing calls this directly

Calls 3

bracketKeywordMethod · 0.80
commaSeparatedMethod · 0.80
DocMethod · 0.80

Tested by

no test coverage detected