You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
state->db, "insert or replace into NARs(cache, hashPart, timestamp, present) values (?, ?, ?, 0)");
116
118
117
119
state->queryNAR.create(
118
120
state->db,
119
-
"select present, namePart, url, compression, fileHash, fileSize, narHash, narSize, refs, deriver, sigs, ca from NARs where cache = ? and hashPart = ? and ((present = 0 and timestamp > ?) or (present = 1 and timestamp > ?))");
121
+
"select present, namePart, url, compression, fileHash, fileSize, narHash, narSize, refs, deriver, sigs, ca, provenance from NARs where cache = ? and hashPart = ? and ((present = 0 and timestamp > ?) or (present = 1 and timestamp > ?))");
120
122
121
123
state->insertRealisation.create(
122
124
state->db,
@@ -279,6 +281,8 @@ class NarInfoDiskCacheImpl : public NarInfoDiskCache
279
281
for (auto & sig : tokenizeString<Strings>(queryNAR.getStr(10), ""))
0 commit comments