From 1cf73f74acd06560918ca057044464770c911441 Mon Sep 17 00:00:00 2001 From: Igor Putovny Date: Fri, 6 Oct 2023 14:38:07 +0200 Subject: [PATCH] Assign bucket of ancestor node to leaf node --- proto/aggregator/aggregator.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/proto/aggregator/aggregator.c b/proto/aggregator/aggregator.c index d8f16851..aeca2019 100644 --- a/proto/aggregator/aggregator.c +++ b/proto/aggregator/aggregator.c @@ -182,7 +182,7 @@ get_ancestor_bucket(const struct trie_node *node) while (1) { if (node->parent == NULL) - return NULL; + return node->bucket; if (node->parent->bucket != NULL) return node->parent->bucket; @@ -204,6 +204,7 @@ first_pass(struct trie_node *node, slab *trie_slab) if (is_leaf(node)) { node->potential_buckets[node->potential_buckets_count++] = get_ancestor_bucket(node); + //node->potential_buckets[node->potential_buckets_count++] = node->bucket; return; }