added date_type_t, time_type_t and timestamp, ensure allocated postgres resources are released, split repository into basic_repository and repository.

This commit is contained in:
2026-01-06 15:43:20 +01:00
parent f07a360da2
commit 0c6b5a0a93
60 changed files with 1132 additions and 1225 deletions
+1 -1
View File
@@ -85,7 +85,7 @@ utils::result<std::optional<record>, utils::error> statement::fetch_one() const
return utils::ok(std::optional<record>{std::nullopt});
}
return utils::ok(std::optional{*first.release()});
return utils::ok(std::optional{*first.get()});
}
void statement::reset() const {