From b1476079bb355e6de8591b3136aee1108ee50a33 Mon Sep 17 00:00:00 2001 From: Prabhjot Singh Sethi Date: Sun, 4 May 2025 23:02:17 +0000 Subject: [PATCH] Add the missing initialization routine Signed-off-by: Prabhjot Singh Sethi --- table/generic.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/table/generic.go b/table/generic.go index df3358f..6b73f73 100644 --- a/table/generic.go +++ b/table/generic.go @@ -42,6 +42,11 @@ func (t *Table[K, E]) Initialize(col db.StoreCollection) error { return err } + err = t.ManagerImpl.Initialize(context.Background(), t) + if err != nil { + return err + } + t.col = col return nil }