Representation of n-ary conjunctions (AND/OR)
| 89 | |
| 90 | // Representation of n-ary conjunctions (AND/OR) |
| 91 | type conjunctExpression struct { |
| 92 | isExpression |
| 93 | isBoolExpression |
| 94 | expressions []BoolExpression |
| 95 | conjunction []byte |
| 96 | } |
| 97 | |
| 98 | func (conj *conjunctExpression) SerializeSql(out *bytes.Buffer) (err error) { |
| 99 | if len(conj.expressions) == 0 { |
nothing calls this directly
no outgoing calls
no test coverage detected