in src/main/java/com/ericsson/gerrit/plugins/eventslog/sql/SQLClient.java [97:104]
ListMultimap<String, SQLEntry> getEvents(String query) throws EventsLogException {
try (Connection conn = ds.getConnection();
Statement stat = conn.createStatement()) {
return listEvents(stat, query);
} catch (SQLException e) {
throw new EventsLogException("Cannot query database", e);
}
}