diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-04-17 23:04:21 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-04-17 23:04:21 +0200 |
commit | aaa109565e4fb662e423f23bc48c9ad9831dd281 (patch) | |
tree | 78e26f0ac9109880732f5f20e94140e036d223a8 /src/libstore/sqlite.hh | |
parent | bdb32266079f13f687790426dcbe1941c6a959f0 (diff) |
Use a more space/time-efficient representation for the eval cache
Diffstat (limited to 'src/libstore/sqlite.hh')
-rw-r--r-- | src/libstore/sqlite.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstore/sqlite.hh b/src/libstore/sqlite.hh index 661a384ef..50909a35a 100644 --- a/src/libstore/sqlite.hh +++ b/src/libstore/sqlite.hh @@ -26,6 +26,8 @@ struct SQLite void isCache(); void exec(const std::string & stmt); + + uint64_t getLastInsertedRowId(); }; /* RAII wrapper to create and destroy SQLite prepared statements. */ |