diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/libstore/nar-info-disk-cache.cc | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/libstore/nar-info-disk-cache.cc b/src/libstore/nar-info-disk-cache.cc index d28ff42c7f23..ff4bd651aa53 100644 --- a/src/libstore/nar-info-disk-cache.cc +++ b/src/libstore/nar-info-disk-cache.cc @@ -36,15 +36,6 @@ create table if not exists NARs ( foreign key (cache) references BinaryCaches(id) on delete cascade ); -create table if not exists NARExistence ( - cache integer not null, - storePath text not null, - exist integer not null, - timestamp integer not null, - primary key (cache, storePath), - foreign key (cache) references BinaryCaches(id) on delete cascade -); - )sql"; class NarInfoDiskCacheImpl : public NarInfoDiskCache @@ -155,7 +146,6 @@ public: auto queryNAR(state->queryNAR.use()(cache.id)(hashPart)); if (!queryNAR.next()) - // FIXME: check NARExistence return {oUnknown, 0}; if (!queryNAR.getInt(13)) |