(p *PrettyCfg)
| 1364 | } |
| 1365 | |
| 1366 | func (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 | |
| 1374 | func (node *PartitionBy) doc(p *PrettyCfg) pretty.Doc { |
| 1375 | // Final layout: |
nothing calls this directly
no test coverage detected