summaryrefslogtreecommitdiffstats
path: root/include/shard
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/shard
parent145a1ded7c5c3a6ee8191680c289ec3e64f4c776 (diff)
downloaddynamic-extension-7e7fd9f7339eee2f1ae974c662a447532dfb1b1a.tar.gz
Updated FSTrie benchmark and some minor fixes
Diffstat (limited to 'include/shard')
-rw-r--r--include/shard/FSTrie.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/shard/FSTrie.h b/include/shard/FSTrie.h
index 50bf982..95f396f 100644
--- a/include/shard/FSTrie.h
+++ b/include/shard/FSTrie.h
@@ -61,7 +61,7 @@ public:
std::sort(base, stop, std::less<Wrapped<R>>());
for (size_t i=0; i<buffer.get_record_count(); i++) {
- if (temp_buffer[i].is_deleted() || !temp_buffer[i].is_visible()) {
+ if (temp_buffer[i].is_deleted() || !temp_buffer[i].is_visible() || temp_buffer[i].rec.key == "") {
continue;
}