diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2023-07-17 16:15:13 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2023-07-17 16:15:13 -0400 |
| commit | 4c616412f938bc06a12e7526c4e314e4451c083c (patch) | |
| tree | d67b3130691e43dc1f5842d13378906e70f8358c /tests/pgm_tests.cpp | |
| parent | 7bed50185d3e114381043b8fdbe5c748a5c9a490 (diff) | |
| download | dynamic-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.cpp | 2 |
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); |