aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/local-store.hh
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2010-02-18 16:21:59 +0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2010-02-18 16:21:59 +0000
commit836e5b6f5741c845da08490a6fd8ad9a3f37726e (patch)
treecd977d8902869b522b9913b716f3db76d1cd611c /src/libstore/local-store.hh
parent77cb9e3fb19005a40724cb42773d2b11e2528858 (diff)
* Implemented queryReferrers().
Diffstat (limited to 'src/libstore/local-store.hh')
-rw-r--r--src/libstore/local-store.hh3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstore/local-store.hh b/src/libstore/local-store.hh
index af1cd26a3..9eae443d1 100644
--- a/src/libstore/local-store.hh
+++ b/src/libstore/local-store.hh
@@ -190,6 +190,7 @@ private:
SQLiteStmt stmtAddReference;
SQLiteStmt stmtQueryPathInfo;
SQLiteStmt stmtQueryReferences;
+ SQLiteStmt stmtQueryReferrers;
int getSchema();
@@ -205,8 +206,6 @@ private:
void rewriteReferrers(const Path & path, bool purge, PathSet referrers);
- bool queryReferrersInternal(const Path & path, PathSet & referrers);
-
void invalidatePath(const Path & path);
void upgradeStore6();