diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-02-18T16·21+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-02-18T16·21+0000 |
commit | 836e5b6f5741c845da08490a6fd8ad9a3f37726e (patch) | |
tree | cd977d8902869b522b9913b716f3db76d1cd611c /src/libstore/local-store.hh | |
parent | 77cb9e3fb19005a40724cb42773d2b11e2528858 (diff) |
* Implemented queryReferrers().
Diffstat (limited to 'src/libstore/local-store.hh')
-rw-r--r-- | src/libstore/local-store.hh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstore/local-store.hh b/src/libstore/local-store.hh index af1cd26a3052..9eae443d1247 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(); |