This commit is contained in:
2024-10-09 09:47:35 -05:00
parent 6a97ad664b
commit 9adec02640
6 changed files with 76 additions and 68 deletions

View File

@ -452,7 +452,7 @@ private:
i_provider &provider_;
private:
db::db3_t db_{nullptr};
utils::db::sqlite::db3_t db_{nullptr};
std::uint64_t next_handle_{0U};
mutable std::recursive_mutex open_file_mtx_;
std::unordered_map<std::string, std::shared_ptr<i_closeable_open_file>>

View File

@ -39,7 +39,7 @@ public:
auto operator=(meta_db &&) -> meta_db & = delete;
private:
db::db3_t db_;
utils::db::sqlite::db3_t db_;
constexpr static const auto table_name = "meta";
private: