(p *PrettyCfg)
| 2316 | } |
| 2317 | |
| 2318 | func (node *IsNullExpr) doc(p *PrettyCfg) pretty.Doc { |
| 2319 | return pretty.ConcatSpace( |
| 2320 | p.exprDocWithParen(node.Expr), |
| 2321 | pretty.Keyword("IS NULL"), |
| 2322 | ) |
| 2323 | } |
| 2324 | |
| 2325 | func (node *IsNotNullExpr) doc(p *PrettyCfg) pretty.Doc { |
| 2326 | return pretty.ConcatSpace( |
nothing calls this directly
no test coverage detected