this test is not safe for parallel execution because it relies on a single table in a fixed place move it to its own suite
| 19 | // this test is not safe for parallel execution because it relies on a single table in a fixed place |
| 20 | // move it to its own suite |
| 21 | type MySQLRDSBinlogAPITestSuite struct { |
| 22 | protos.FlowServiceClient |
| 23 | t *testing.T |
| 24 | pg *PostgresSource |
| 25 | source *MySqlSource |
| 26 | suffix string |
| 27 | ch ClickHouseSuite |
| 28 | } |
| 29 | |
| 30 | func (s MySQLRDSBinlogAPITestSuite) Teardown(ctx context.Context) { |
| 31 | s.pg.Teardown(s.t, ctx, s.suffix) |
nothing calls this directly
no outgoing calls
no test coverage detected