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

Method doc

postgres/parser/sem/tree/pretty.go:651–663  ·  view source on GitHub ↗
(p *PrettyCfg)

Source from the content-addressed store, hash-verified

649}
650
651func (node *Subquery) doc(p *PrettyCfg) pretty.Doc {
652 d := pretty.Text("<unknown>")
653 if node.Select != nil {
654 d = p.Doc(node.Select)
655 }
656 if node.Exists {
657 d = pretty.Concat(
658 pretty.Keyword("EXISTS"),
659 d,
660 )
661 }
662 return d
663}
664
665func (node *AliasedTableExpr) doc(p *PrettyCfg) pretty.Doc {
666 d := p.Doc(node.Expr)

Callers

nothing calls this directly

Calls 4

TextFunction · 0.92
ConcatFunction · 0.92
KeywordFunction · 0.92
DocMethod · 0.80

Tested by

no test coverage detected