diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2023-07-27 18:21:26 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2023-07-27 18:21:26 -0400 |
| commit | d6e08e9d8d3ac9b356ac50cee22b41f828160247 (patch) | |
| tree | 2c1f62f6385072e1a824e557693634acc3136cdd /tests/pgm_tests.cpp | |
| parent | f462921cbc52688fb478c6ac86a891e596fd6053 (diff) | |
| download | dynamic-extension-d6e08e9d8d3ac9b356ac50cee22b41f828160247.tar.gz | |
Expanded query interface
Query interface now enables skipping of delete processing and stopping
query processing when first match is found.
Diffstat (limited to 'tests/pgm_tests.cpp')
| -rw-r--r-- | tests/pgm_tests.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/pgm_tests.cpp b/tests/pgm_tests.cpp index 9622522..0552417 100644 --- a/tests/pgm_tests.cpp +++ b/tests/pgm_tests.cpp @@ -212,12 +212,12 @@ START_TEST(t_range_query_merge) ck_assert_int_eq(results[0].size() + results[1].size(), result_size); - std::vector<std::vector<Rec>> proc_results; + std::vector<std::vector<Wrapped<Rec>>> proc_results; for (size_t j=0; j<results.size(); j++) { - proc_results.emplace_back(std::vector<Rec>()); + proc_results.emplace_back(std::vector<Wrapped<Rec>>()); for (size_t i=0; i<results[j].size(); i++) { - proc_results[j].emplace_back(results[j][i].rec); + proc_results[j].emplace_back(results[j][i]); } } |