aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/local-store.hh
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2010-04-26 12:43:42 +0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2010-04-26 12:43:42 +0000
commit2398af13c53217b5de5821bac0f0c44e9081c23d (patch)
tree21edf49a39d9a0471b480c3754cce50b33ea4cd2 /src/libstore/local-store.hh
parentd66ea83a763a36e7e7b9558b90abcfe09bec1b85 (diff)
* Add an command `nix-store --query-failed-paths' to list the cached
failed paths (when using the `build-cache-failure' option).
Diffstat (limited to 'src/libstore/local-store.hh')
-rw-r--r--src/libstore/local-store.hh4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libstore/local-store.hh b/src/libstore/local-store.hh
index 0c5f04158..70fc64fdc 100644
--- a/src/libstore/local-store.hh
+++ b/src/libstore/local-store.hh
@@ -184,6 +184,9 @@ public:
/* Query whether `path' previously failed to build. */
bool hasPathFailed(const Path & path);
+ /* Return the set of paths that have failed to build.*/
+ PathSet queryFailedPaths();
+
private:
Path schemaPath;
@@ -203,6 +206,7 @@ private:
SQLiteStmt stmtInvalidatePath;
SQLiteStmt stmtRegisterFailedPath;
SQLiteStmt stmtHasPathFailed;
+ SQLiteStmt stmtQueryFailedPaths;
SQLiteStmt stmtAddDerivationOutput;
SQLiteStmt stmtQueryValidDerivers;
SQLiteStmt stmtQueryDerivationOutputs;