sequence tests progress

This commit is contained in:
2026-03-13 16:18:41 +01:00
parent 6bdf281eab
commit 86c9e6b1cd
14 changed files with 117 additions and 33 deletions
@@ -298,6 +298,10 @@ utils::result<bool, utils::error> postgres_connection::exists(const std::string
return utils::ok(*result == 1);
}
utils::result<bool, utils::error> postgres_connection::sequence_exists(const std::string& schema_name, const std::string& sequence_name) {
return utils::ok(false);
}
std::string postgres_connection::to_escaped_string(const utils::blob_type_t &value) const {
size_t escapedDataLength;
unsigned char *escapedData = PQescapeByteaConn(conn_, value.data(), value.size(), &escapedDataLength);