@Override
  public void dropTables() {
    List<AnalyticsTable> tables = tableManager.getAllTables();

    for (AnalyticsTable table : tables) {
      tableManager.dropTable(table.getTableName());
      tableManager.dropTable(table.getTempTableName());
    }
  }