data-aggregator: specifically limit to fspmethod 'basic'

In their current implementation, the data-aggregator scripts do not work
correctly on sampling results.

Change-Id: I1035970b352f513d725bd1a40ac9262368ffbcc0
This commit is contained in:
Horst Schirmeier
2018-06-22 18:39:23 +02:00
parent e63f7376f8
commit 27b697200b
12 changed files with 16 additions and 0 deletions

View File

@ -20,6 +20,7 @@ SELECT v.benchmark, v.variant, s.name, s.size, r.resulttype,
ON t.variant_id = g.variant_id
AND t.data_address = g.data_address
AND t.instr2 = g.instr2
AND g.fspmethod_id = (SELECT id FROM fspmethod WHERE method = 'basic')
JOIN result_GenericExperimentMessage r
ON r.pilot_id = g.pilot_id
WHERE t.variant_id = v.id -- refers to parent query
@ -39,6 +40,7 @@ JOIN fspgroup g
ON t.variant_id = g.variant_id
AND t.data_address = g.data_address
AND t.instr2 = g.instr2
AND g.fspmethod_id = (SELECT id FROM fspmethod WHERE method = 'basic')
JOIN result_GenericExperimentMessage r
ON r.pilot_id = g.pilot_id
WHERE $FILTER