(self, vector)
| 36 | assert_kill_ok(client, query_id_to_kill) |
| 37 | |
| 38 | def test_different_coordinator(self, vector): |
| 39 | protocol = vector.get_value('protocol') |
| 40 | with self.create_client_for_nth_impalad(1, protocol) as client, \ |
| 41 | QueryToKill(self, protocol, nth_impalad=0) as query_id_to_kill: |
| 42 | assert_kill_ok(client, query_id_to_kill) |
| 43 | |
| 44 | def test_invalid_query_id(self, vector): |
| 45 | with self.create_impala_client(protocol=vector.get_value('protocol')) as client: |
nothing calls this directly
no test coverage detected