(self)
| 95 | assert rc == 0, 'Error creating encryption zone: %s %s' % (stdout, stderr) |
| 96 | |
| 97 | def __cleanup(self): |
| 98 | self.client.execute('use default') |
| 99 | self.client.execute('drop table if exists %s.tbl purge' % TEST_DB) |
| 100 | self.client.execute('drop table if exists %s.t1 purge' % TEST_DB) |
| 101 | self.cleanup_db(TEST_DB) |
| 102 | self.hdfs_client.delete_file_dir(TMP_DIR, recursive=True) |
| 103 | |
| 104 | def test_load_data(self, vector): |
| 105 | key_tbl_dir = vector.get_value('key_tbl_dir') |
no test coverage detected