修复_commit表和_latest表初始化失败的问题

This commit is contained in:
Liujian
2024-09-06 10:32:54 +08:00
parent 583918d617
commit 6301b8f2fe
2 changed files with 1 additions and 1 deletions
+1
View File
@@ -22,6 +22,7 @@ type StoreWidthType[H any] struct {
func NewCommitWithKey[H any](name, key string) *StoreWidthType[H] {
return &StoreWidthType[H]{
Store: Store[H]{
name: name,
latestTableName: name + "_latest",
commitTableName: name + "_commit",
},