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