CoalesceExpr represents a COALESCE or IFNULL expression.
| 705 | |
| 706 | // CoalesceExpr represents a COALESCE or IFNULL expression. |
| 707 | type CoalesceExpr struct { |
| 708 | Name string |
| 709 | Exprs Exprs |
| 710 | |
| 711 | typeAnnotation |
| 712 | } |
| 713 | |
| 714 | // NewTypedCoalesceExpr returns a CoalesceExpr that is well-typed. |
| 715 | func NewTypedCoalesceExpr(typedExprs TypedExprs, typ *types.T) *CoalesceExpr { |
nothing calls this directly
no outgoing calls
no test coverage detected