From 4392c234fe6e9b432b9b90d8ea132fc1f169694e Mon Sep 17 00:00:00 2001 From: ucwong Date: Fri, 6 Feb 2026 22:56:01 +0800 Subject: [PATCH] close freezer table in InspectFreezerTable --- core/rawdb/ancient_utils.go | 1 + 1 file changed, 1 insertion(+) diff --git a/core/rawdb/ancient_utils.go b/core/rawdb/ancient_utils.go index 6f1f2552c7..e51b134d81 100644 --- a/core/rawdb/ancient_utils.go +++ b/core/rawdb/ancient_utils.go @@ -130,6 +130,7 @@ func InspectFreezerTable(ancient string, freezerName string, tableName string, s if err != nil { return err } + defer table.Close() table.dumpIndexStdout(start, end) return nil }