IN Whether a value is within a set of values
| 183 | |
| 184 | // IN Whether a value is within a set of values |
| 185 | type IN struct { |
| 186 | Column interface{} |
| 187 | Values []interface{} |
| 188 | } |
| 189 | |
| 190 | func (in IN) Build(builder Builder) { |
| 191 | builder.WriteQuoted(in.Column) |
nothing calls this directly
no outgoing calls
no test coverage detected