diff options
| author | Douglas B. Rumbaugh <dbr4@psu.edu> | 2024-03-26 16:35:12 -0400 |
|---|---|---|
| committer | Douglas B. Rumbaugh <dbr4@psu.edu> | 2024-03-26 16:35:12 -0400 |
| commit | 7e7fd9f7339eee2f1ae974c662a447532dfb1b1a (patch) | |
| tree | 788d63bdc3c166f9cb7199035b72cf0e68ac8818 /include/query/pointlookup.h | |
| parent | 145a1ded7c5c3a6ee8191680c289ec3e64f4c776 (diff) | |
| download | dynamic-extension-7e7fd9f7339eee2f1ae974c662a447532dfb1b1a.tar.gz | |
Updated FSTrie benchmark and some minor fixes
Diffstat (limited to 'include/query/pointlookup.h')
| -rw-r--r-- | include/query/pointlookup.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/query/pointlookup.h b/include/query/pointlookup.h index caaa320..35d38e3 100644 --- a/include/query/pointlookup.h +++ b/include/query/pointlookup.h @@ -97,10 +97,12 @@ public: return output; } - output.append(r[0].rec); + output.push_back(r[0].rec); return output; } } + + return output; } static void delete_query_state(void *state) { |