Format implements the NodeFormatter interface.
(ctx *FmtCtx)
| 283 | |
| 284 | // Format implements the NodeFormatter interface. |
| 285 | func (node *IsNullExpr) Format(ctx *FmtCtx) { |
| 286 | exprFmtWithParen(ctx, node.Expr) |
| 287 | ctx.WriteString(" IS NULL") |
| 288 | } |
| 289 | |
| 290 | // NewTypedIsNullExpr returns a new IsNullExpr that is verified to be |
| 291 | // well-typed. |
nothing calls this directly
no test coverage detected