From 4c616412f938bc06a12e7526c4e314e4451c083c Mon Sep 17 00:00:00 2001 From: Douglas Rumbaugh Date: Mon, 17 Jul 2023 16:15:13 -0400 Subject: Added the parameter argument to query merge routine This is necessary for KNN, but it unused for all currently implemented query types. --- tests/pgm_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/pgm_tests.cpp') 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::merge(proc_results); + auto result = PGMRangeQuery::merge(proc_results, nullptr); std::sort(result.begin(), result.end()); ck_assert_int_eq(result.size(), result_size); -- cgit v1.2.3