Representation of a tuple enclosed, comma separated list of clauses
| 185 | |
| 186 | // Representation of a tuple enclosed, comma separated list of clauses |
| 187 | type listClause struct { |
| 188 | clauses []Clause |
| 189 | includeParentheses bool |
| 190 | } |
| 191 | |
| 192 | func (list *listClause) SerializeSql(out *bytes.Buffer) error { |
| 193 | if list.includeParentheses { |
nothing calls this directly
no outgoing calls
no test coverage detected