summaryrefslogtreecommitdiffstats
path: root/include/query
diff options
context:
space:
mode:
authorDouglas B. Rumbaugh <dbr4@psu.edu>2024-03-26 16:35:12 -0400
committerDouglas B. Rumbaugh <dbr4@psu.edu>2024-03-26 16:35:12 -0400
commit7e7fd9f7339eee2f1ae974c662a447532dfb1b1a (patch)
tree788d63bdc3c166f9cb7199035b72cf0e68ac8818 /include/query
parent145a1ded7c5c3a6ee8191680c289ec3e64f4c776 (diff)
downloaddynamic-extension-7e7fd9f7339eee2f1ae974c662a447532dfb1b1a.tar.gz
Updated FSTrie benchmark and some minor fixes
Diffstat (limited to 'include/query')
-rw-r--r--include/query/pointlookup.h4
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) {