in src/main/java/com/googlesource/gerrit/plugins/verifystatus/VerifyStatusQueryShell.java [399:411]
private void showResultSet(final ResultSet rs, boolean alreadyOnRow, long start, Function... show)
throws SQLException {
switch (outputFormat) {
case JSON_SINGLE:
case JSON:
showResultSetJson(rs, alreadyOnRow, start, show);
break;
case PRETTY:
default:
showResultSetPretty(rs, alreadyOnRow, start, show);
break;
}
}