Format implements the NodeFormatter interface.
(ctx *FmtCtx)
| 305 | |
| 306 | // Format implements the NodeFormatter interface. |
| 307 | func (node *IsNotNullExpr) Format(ctx *FmtCtx) { |
| 308 | exprFmtWithParen(ctx, node.Expr) |
| 309 | ctx.WriteString(" IS NOT NULL") |
| 310 | } |
| 311 | |
| 312 | // NewTypedIsNotNullExpr returns a new IsNotNullExpr that is verified to be |
| 313 | // well-typed. |
nothing calls this directly
no test coverage detected