added connection pool and tests

This commit is contained in:
Sascha Kühl
2025-02-05 15:47:51 +01:00
parent 45a7199ccf
commit bc3ffbda10
20 changed files with 495 additions and 53 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ TEST_CASE("Test create empty column", "[column]") {
c.set(7);
REQUIRE(c.type() == basic_type::type_int32);
REQUIRE(c.as<std::string>() == "7");
REQUIRE(c.as<long>() == 7);
REQUIRE(c.as<int>() == 7);
REQUIRE(c.str() == "7");
}