Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,4 @@ dev-dependencies = [
[tool.uv.sources]
timestring = { git = "https://github.com/codecov/timestring", rev = "d37ceacc5954dff3b5bd2f887936a98a668dda42" }
test-results-parser = { git = "https://github.com/codecov/test-results-parser", rev = "190bbc8a911099749928e13d5fe57f6027ca1e74" }
shared = { git = "https://github.com/codecov/shared", rev = "047822083396cc6e340ba799f68756e51a86ef65" }
shared = { git = "https://github.com/codecov/shared", rev = "8acbdc67b66c371cbcdfbbfef5296692899a42e5" }
Original file line number Diff line number Diff line change
Expand Up @@ -190,21 +190,6 @@ WHERE "reports_reportresults"."report_id" IN
WHERE U0."ownerid" IN (%s))));


-- ReportDetails
DELETE
FROM "reports_reportdetails"
WHERE "reports_reportdetails"."report_id" IN
(SELECT W0."id"
FROM "reports_commitreport" W0
WHERE W0."commit_id" IN
(SELECT V0."id"
FROM "commits" V0
WHERE V0."repoid" IN
(SELECT U0."repoid"
FROM "repos" U0
WHERE U0."ownerid" IN (%s))));


-- ReportLevelTotals
DELETE
FROM "reports_reportleveltotals"
Expand Down Expand Up @@ -304,18 +289,6 @@ WHERE "pulls"."repoid" IN
WHERE U0."ownerid" IN (%s));


-- ProfilingUpload
DELETE
FROM "profiling_profilingupload"
WHERE "profiling_profilingupload"."profiling_commit_id" IN
(SELECT V0."id"
FROM "profiling_profilingcommit" V0
WHERE V0."repoid" IN
(SELECT U0."repoid"
FROM "repos" U0
WHERE U0."ownerid" IN (%s)));


-- TestFlagBridge
DELETE
FROM "reports_test_results_flag_bridge"
Expand Down Expand Up @@ -430,15 +403,6 @@ WHERE "staticanalysis_staticanalysissinglefilesnapshot"."repository_id" IN
WHERE U0."ownerid" IN (%s));


-- ProfilingCommit
DELETE
FROM "profiling_profilingcommit"
WHERE "profiling_profilingcommit"."repoid" IN
(SELECT U0."repoid"
FROM "repos" U0
WHERE U0."ownerid" IN (%s));


-- RepositoryFlag
DELETE
FROM "reports_repositoryflag"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,18 +115,6 @@ WHERE "reports_reportresults"."report_id" IN
WHERE U0."repoid" IN (%s)));


-- ReportDetails
DELETE
FROM "reports_reportdetails"
WHERE "reports_reportdetails"."report_id" IN
(SELECT V0."id"
FROM "reports_commitreport" V0
WHERE V0."commit_id" IN
(SELECT U0."id"
FROM "commits" U0
WHERE U0."repoid" IN (%s)));


-- ReportLevelTotals
DELETE
FROM "reports_reportleveltotals"
Expand Down Expand Up @@ -205,15 +193,6 @@ FROM "pulls"
WHERE "pulls"."repoid" IN (%s);


-- ProfilingUpload
DELETE
FROM "profiling_profilingupload"
WHERE "profiling_profilingupload"."profiling_commit_id" IN
(SELECT U0."id"
FROM "profiling_profilingcommit" U0
WHERE U0."repoid" IN (%s));


-- TestFlagBridge
DELETE
FROM "reports_test_results_flag_bridge"
Expand Down Expand Up @@ -292,12 +271,6 @@ FROM "staticanalysis_staticanalysissinglefilesnapshot"
WHERE "staticanalysis_staticanalysissinglefilesnapshot"."repository_id" IN (%s);


-- ProfilingCommit
DELETE
FROM "profiling_profilingcommit"
WHERE "profiling_profilingcommit"."repoid" IN (%s);


-- RepositoryFlag
DELETE
FROM "reports_repositoryflag"
Expand Down
7 changes: 3 additions & 4 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading