file mgr db unit tests and fixes
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good

This commit is contained in:
2024-12-08 12:02:55 -06:00
parent 9c9c7cdf8b
commit 55a88e7576

View File

@@ -192,7 +192,6 @@ auto sqlite_file_mgr_db::get_resume_list() const -> std::vector<resume_entry> {
auto sqlite_file_mgr_db::get_upload(const std::string &api_path) const
-> std::optional<upload_entry> {
auto result = utils::db::sqlite::db_select{*db_, upload_table}
.column("source_path")
.where("api_path")
.equals(api_path)
.go();