aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-03-20 18:23:26 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-03-20 18:23:26 +0100
commit19d9762ad5fc8d8db3e9a545a89309f08572cc9f (patch)
treea74fc3a2d33e48240a3516b06d7490e86ff037d2 /src
parentcb79e91ec3f63ac46d8f4361cb4db75e76a79981 (diff)
nix-store --clear-failed-paths: Clear derivation outputs
If the argument to ‘nix-store --clear-failed-paths’ is a derivation, then clear the failed state of its outputs.
Diffstat (limited to 'src')
-rw-r--r--src/libstore/local-store.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc
index 231640ead..f3b779dd0 100644
--- a/src/libstore/local-store.cc
+++ b/src/libstore/local-store.cc
@@ -377,8 +377,10 @@ void LocalStore::openDB(bool create)
"select time from FailedPaths where path = ?;");
stmtQueryFailedPaths.create(db,
"select path from FailedPaths;");
+ // If the path is a derivation, then clear its outputs.
stmtClearFailedPath.create(db,
- "delete from FailedPaths where ?1 = '*' or path = ?1;");
+ "delete from FailedPaths where ?1 = '*' or path = ?1 "
+ "or path in (select d.path from DerivationOutputs d join ValidPaths v on d.drv = v.id where v.path = ?1);");
stmtAddDerivationOutput.create(db,
"insert or replace into DerivationOutputs (drv, id, path) values (?, ?, ?);");
stmtQueryValidDerivers.create(db,