(t *testing.T, m *core.Member, timeout time.Duration)
| 220 | } |
| 221 | |
| 222 | func assertNoRedshiftSubResult(t *testing.T, m *core.Member, timeout time.Duration) { |
| 223 | t.Helper() |
| 224 | select { |
| 225 | case msg := <-m.Result: |
| 226 | t.Fatalf("unexpected idle subscription result: %s", msg.Data) |
| 227 | case <-time.After(timeout): |
| 228 | } |
| 229 | } |
| 230 | |
| 231 | func TestRedshiftMutationInsertWithSuppliedPK(t *testing.T) { |
| 232 | if dbType != "redshift" { |
no outgoing calls
no test coverage detected