1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-21 17:59:36 +01:00

* Implemented queryReferrers().

This commit is contained in:
Eelco Dolstra 2010-02-18 16:21:59 +00:00
parent 77cb9e3fb1
commit 836e5b6f57
2 changed files with 22 additions and 35 deletions

View file

@ -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();