A not expression which negates a expression value
| 206 | |
| 207 | // A not expression which negates a expression value |
| 208 | type negateExpression struct { |
| 209 | isExpression |
| 210 | isBoolExpression |
| 211 | |
| 212 | nested BoolExpression |
| 213 | } |
| 214 | |
| 215 | func (c *negateExpression) SerializeSql(out *bytes.Buffer) (err error) { |
| 216 | _, _ = out.WriteString("NOT (") |
nothing calls this directly
no outgoing calls
no test coverage detected