fixed table_column naming consistency and added result_name method

This commit is contained in:
Sascha Kühl
2026-01-23 13:03:41 +01:00
parent 15f959b24e
commit 4b015c8ced
7 changed files with 75 additions and 43 deletions
+2
View File
@@ -519,6 +519,8 @@ TEST_CASE_METHOD(QueryFixture, "Execute select statement with group by and order
for (const auto &r: *result) {
const auto age_count_val = r.at<int>(0);
const auto age_val = r.at<int>(1);
const auto ec = expected_values.front().first;
const auto ea = expected_values.front().second;
REQUIRE(age_count_val == expected_values.front().first);
REQUIRE(age_val == expected_values.front().second);
expected_values.pop_front();