(buf *TrackedBuffer, d format.Dialect)
| 21 | } |
| 22 | |
| 23 | func (n *NullIfExpr) Format(buf *TrackedBuffer, d format.Dialect) { |
| 24 | if n == nil { |
| 25 | return |
| 26 | } |
| 27 | buf.WriteString("NULLIF(") |
| 28 | buf.join(n.Args, d, ", ") |
| 29 | buf.WriteString(")") |
| 30 | } |
| 31 | |
| 32 | type Selectivity float64 |
| 33 |