summaryrefslogtreecommitdiffstats
path: root/tests/pgm_tests.cpp
diff options
context:
space:
mode:
authorDouglas Rumbaugh <dbr4@psu.edu>2023-07-17 16:15:13 -0400
committerDouglas Rumbaugh <dbr4@psu.edu>2023-07-17 16:15:13 -0400
commit4c616412f938bc06a12e7526c4e314e4451c083c (patch)
treed67b3130691e43dc1f5842d13378906e70f8358c /tests/pgm_tests.cpp
parent7bed50185d3e114381043b8fdbe5c748a5c9a490 (diff)
downloaddynamic-extension-4c616412f938bc06a12e7526c4e314e4451c083c.tar.gz
Added the parameter argument to query merge routine
This is necessary for KNN, but it unused for all currently implemented query types.
Diffstat (limited to 'tests/pgm_tests.cpp')
-rw-r--r--tests/pgm_tests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pgm_tests.cpp b/tests/pgm_tests.cpp
index 083b370..9622522 100644
--- a/tests/pgm_tests.cpp
+++ b/tests/pgm_tests.cpp
@@ -221,7 +221,7 @@ START_TEST(t_range_query_merge)
}
}
- auto result = PGMRangeQuery<Rec>::merge(proc_results);
+ auto result = PGMRangeQuery<Rec>::merge(proc_results, nullptr);
std::sort(result.begin(), result.end());
ck_assert_int_eq(result.size(), result_size);