Skip to content

Commit cddfe66

Browse files
committed
feat(silo): fix merge errors
1 parent 57a7357 commit cddfe66

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

src/silo/common/phylo_tree.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#include <nlohmann/json.hpp>
77

88
#include "silo/common/tree_node_id.h"
9+
#include "silo/query_engine/batched_bitmap_reader.h"
910

1011
namespace silo::common {
1112
using silo::common::TreeNodeId;

src/silo/storage/column/string_column.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ void StringColumnPartition::insert(const std::string& value) {
4242
const String<STRING_SIZE> tmp(value, metadata->dictionary);
4343
values.push_back(tmp);
4444
if (metadata->phylo_tree.has_value()) {
45-
metadata->phylo_tree->checkNodeExists(value);
45+
metadata->phylo_tree->validateNodeExists(value);
4646
auto child_it = (metadata->phylo_tree->nodes).find(TreeNodeId{value});
4747
child_it->second->row_index = values.size() - 1;
4848
}

0 commit comments

Comments
 (0)