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 /include/shard/PGM.h | |
| 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 'include/shard/PGM.h')
| -rw-r--r-- | include/shard/PGM.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/shard/PGM.h b/include/shard/PGM.h index 20bdbf2..d72ad55 100644 --- a/include/shard/PGM.h +++ b/include/shard/PGM.h @@ -341,7 +341,7 @@ public: return records; } - static std::vector<R> merge(std::vector<std::vector<R>> &results) { + static std::vector<R> merge(std::vector<std::vector<R>> &results, void *parms) { size_t total = 0; for (size_t i=0; i<results.size(); i++) { total += results[i].size(); |