JoinComma joins a list of Queries and adds comma between them.
(qs ...Querier)
| 3237 | |
| 3238 | // JoinComma joins a list of Queries and adds comma between them. |
| 3239 | func (b *Builder) JoinComma(qs ...Querier) *Builder { |
| 3240 | return b.join(qs, ", ") |
| 3241 | } |
| 3242 | |
| 3243 | // join a list of Queries to the builder with a given separator. |
| 3244 | func (b *Builder) join(qs []Querier, sep string) *Builder { |