Representation of n-ary arithmetic (+ - * /)
| 125 | |
| 126 | // Representation of n-ary arithmetic (+ - * /) |
| 127 | type arithmeticExpression struct { |
| 128 | isExpression |
| 129 | expressions []Expression |
| 130 | operator []byte |
| 131 | } |
| 132 | |
| 133 | func (arith *arithmeticExpression) SerializeSql(out *bytes.Buffer) (err error) { |
| 134 | if len(arith.expressions) == 0 { |
nothing calls this directly
no outgoing calls
no test coverage detected