Skip to content
Snippets Groups Projects
Commit 3582926f authored by uhensler's avatar uhensler
Browse files

OO-3304: Avoid RS when switching between pages in quality analysis

parent 4f72dd91
No related branches found
No related tags found
No related merge requests found
...@@ -54,16 +54,17 @@ public class EvaluationFormDAO { ...@@ -54,16 +54,17 @@ public class EvaluationFormDAO {
sb.append(" , count(distinct collection) as numberDataCollections"); sb.append(" , count(distinct collection) as numberDataCollections");
sb.append(" , min(collection.start) as soonestDataCollectionDate"); sb.append(" , min(collection.start) as soonestDataCollectionDate");
sb.append(" , max(collection.deadline) as latestDataCollectionDate"); sb.append(" , max(collection.deadline) as latestDataCollectionDate");
sb.append(" , count(session) as numberParticipants"); sb.append(" , count(session.key) as numberParticipants");
sb.append(" )"); sb.append(" )");
sb.append(" from qualitydatacollection as collection"); sb.append(" from repositoryentry form");
sb.append(" inner join evaluationformsurvey survey"); sb.append(" inner join evaluationformsurvey survey");
sb.append(" on survey.resName = '").append(QualityDataCollectionLight.RESOURCEABLE_TYPE_NAME).append("'"); sb.append(" on survey.formEntry.key = form.key");
sb.append(" and survey.resId = collection.key");
sb.append(" inner join survey.formEntry as form");
sb.append(" left join evaluationformsession session"); sb.append(" left join evaluationformsession session");
sb.append(" on session.survey.key = survey.key"); sb.append(" on session.survey.key = survey.key");
sb.append(" and session.status ='").append(EvaluationFormSessionStatus.done).append("'"); sb.append(" and session.status ='").append(EvaluationFormSessionStatus.done).append("'");
sb.append(" inner join qualitydatacollection as collection");
sb.append(" on survey.resName = '").append(QualityDataCollectionLight.RESOURCEABLE_TYPE_NAME).append("'");
sb.append(" and survey.resId = collection.key");
sb.append(" "); sb.append(" ");
appendWhere(sb, searchParams); appendWhere(sb, searchParams);
sb.append(" group by form.key"); sb.append(" group by form.key");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment