aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/coveragedb/init_db.sh
Commit message (Collapse)AuthorAgeFilesLines
* pkg/coveragedb: use funcname instead of functionTaras Madan2025-01-301-2/+2
| | | | It fixes the misalignment with the code.
* pkg/coveragedb: add functions tableTaras Madan2025-01-291-0/+16
| | | | | | | Session aggregates information about multiple builds. The source code may have a few function definitions per file. In case of multiple function definitions we want to see sum(func1 + func2). Instead of [line_from, line_to] it is better to store the specific list of lines signaled func coverage.
* pkg/coveragedb: reorder fields, aligh with primary_keyTaras Madan2025-01-281-1/+1
|
* pkg/coveragedb: fix schema in order to support multiple managersTaras Madan2024-12-231-0/+64
Current schema makes session+filepath a primary key (it is unique). Manager as a part of primary key makes session+filepath+manager a unique combination.