Filter write pilots from all other queries, since I'm using inject-on-read
This commit is contained in:
@@ -46,7 +46,7 @@ FROM variant v
|
||||
JOIN trace t ON v.id = t.variant_id
|
||||
JOIN fspgroup g ON g.variant_id = t.variant_id AND g.instr2 = t.instr2 AND g.data_physical_address = t.data_physical_address
|
||||
JOIN fsppilot p ON p.id = g.pilot_id
|
||||
WHERE v.variant = '$experiment'$extra
|
||||
WHERE t.accesstype = 'R' AND v.variant = '$experiment'$extra
|
||||
GROUP BY v.id, benchmark
|
||||
ORDER BY variant, benchmark;";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user