(p *PrettyCfg)
| 2062 | } |
| 2063 | |
| 2064 | func (node *CoalesceExpr) doc(p *PrettyCfg) pretty.Doc { |
| 2065 | return p.bracketKeyword( |
| 2066 | node.Name, "(", |
| 2067 | p.Doc(&node.Exprs), |
| 2068 | ")", "", |
| 2069 | ) |
| 2070 | } |
| 2071 | |
| 2072 | func (node *AlterTable) doc(p *PrettyCfg) pretty.Doc { |
| 2073 | title := pretty.Keyword("ALTER TABLE") |
nothing calls this directly
no test coverage detected