Representation of binary operations (e.g. comparisons, arithmetic)
| 235 | |
| 236 | // Representation of binary operations (e.g. comparisons, arithmetic) |
| 237 | type binaryExpression struct { |
| 238 | isExpression |
| 239 | lhs, rhs Expression |
| 240 | operator []byte |
| 241 | } |
| 242 | |
| 243 | func (c *binaryExpression) SerializeSql(out *bytes.Buffer) (err error) { |
| 244 | if c.lhs == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected