aboutsummaryrefslogtreecommitdiff
path: root/src/globals.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/globals.cc')
-rw-r--r--src/globals.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/globals.cc b/src/globals.cc
index f34f8f102..22d2758b6 100644
--- a/src/globals.cc
+++ b/src/globals.cc
@@ -7,7 +7,9 @@ Database nixDB;
TableId dbValidPaths;
TableId dbSuccessors;
+TableId dbSuccessorsRev;
TableId dbSubstitutes;
+TableId dbSubstitutesRev;
string nixStore = "/UNINIT";
@@ -24,7 +26,9 @@ void openDB()
nixDB.open(nixDBPath);
dbValidPaths = nixDB.openTable("validpaths");
dbSuccessors = nixDB.openTable("successors");
+ dbSuccessorsRev = nixDB.openTable("successors-rev");
dbSubstitutes = nixDB.openTable("substitutes");
+ dbSubstitutesRev = nixDB.openTable("substitutes-rev");
}