(self, vector)
| 65 | ) |
| 66 | |
| 67 | def test_idempotence(self, vector): |
| 68 | protocol = vector.get_value('protocol') |
| 69 | with self.create_impala_client(protocol=protocol) as client, \ |
| 70 | QueryToKill(self, protocol) as query_id_to_kill: |
| 71 | assert_kill_ok(client, query_id_to_kill) |
| 72 | assert_kill_error( |
| 73 | client, |
| 74 | ["Could not find query on any coordinator", "Cancelled"], |
| 75 | query_id=query_id_to_kill, |
| 76 | ) |
| 77 | assert_kill_error( |
| 78 | client, |
| 79 | ["Could not find query on any coordinator", "Cancelled"], |
| 80 | query_id=query_id_to_kill, |
| 81 | ) |
nothing calls this directly
no test coverage detected