(vals ...string)
| 15 | ) |
| 16 | |
| 17 | func join(vals ...string) sql.NullString { |
| 18 | if len(vals) == 0 { |
| 19 | return sql.NullString{} |
| 20 | } |
| 21 | return sql.NullString{ |
| 22 | Valid: true, |
| 23 | String: strings.Join(vals, ","), |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | func runOnDeckQueries(t *testing.T, q *Queries) { |
| 28 | ctx := context.Background() |
no test coverage detected