-
Notifications
You must be signed in to change notification settings - Fork 164
Description
This issue is an extension of #937 which aims to add more clarity to the database schema.
This issue uses the new glossary for terms. Please make sure to first refer to that glossary.
Status Quo
Currently, the collection table is used to identify a single test.
For example, given an artifact, a benchmark "hello world", the profile "debug", and the "empty" incremental cache state scenario, the collector collects many different statistics. All those statistics are identified by 1 collection. If the same test happens again, a different collection record is created.
However, we currently completely ignore this table (it is never used in any read query - only inserts).
It seems that if we run many different test iterations a different collection is created for each iteration.
Questions
Is this useful? Do we care about test results generated from different tests for the same test case and artifact combination?