diff options
author | Ludovic Courtès <ludovic.courtes@inria.fr> | 2018-03-29 17:05:45 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-03-30 23:42:07 +0200 |
commit | 602a148650809da3c2356e4429f4b8160a72843b (patch) | |
tree | e0faa9c976637bf2813de3d6dadf573361e00e8c /nix/libstore/local-store.hh | |
parent | c7589cce8d3f9fcb7769e424f341dba8fb3545d0 (diff) | |
download | guix-602a148650809da3c2356e4429f4b8160a72843b.tar guix-602a148650809da3c2356e4429f4b8160a72843b.tar.gz |
daemon: Remove unused schema upgrade code.
* nix/libstore/local-store.cc (LocalStore): Remove upgrade code.
(LocalStore::queryValidPathsOld, LocalStore::queryPathInfoOld)
(LocalStore::upgradeStore6, makeMutable)
(LocalStore::upgardeStore7): Remove.
* nix/libstore/local-store.hh: Adjust accordingly.
Diffstat (limited to 'nix/libstore/local-store.hh')
-rw-r--r-- | nix/libstore/local-store.hh | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/nix/libstore/local-store.hh b/nix/libstore/local-store.hh index 6110468498..4e6b4cfc1d 100644 --- a/nix/libstore/local-store.hh +++ b/nix/libstore/local-store.hh @@ -15,7 +15,7 @@ namespace nix { /* Nix store and database schema version. Version 1 (or 0) was Nix <= 0.7. Version 2 was Nix 0.8 and 0.9. Version 3 is Nix 0.10. Version 4 is Nix 0.11. Version 5 is Nix 0.12-0.16. Version 6 is - Nix 1.0. Version 7 is Nix 1.3. */ + Nix 1.0. Version 7 is Nix 1.3. Guix has always used version 7. */ const int nixSchemaVersion = 7; @@ -244,11 +244,6 @@ private: void updatePathInfo(const ValidPathInfo & info); - void upgradeStore6(); - void upgradeStore7(); - PathSet queryValidPathsOld(); - ValidPathInfo queryPathInfoOld(const Path & path); - struct GCState; void deleteGarbage(GCState & state, const Path & path); |