We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 656cf7b commit 14d5a6fCopy full SHA for 14d5a6f
pkg/vm/engine/tae/db/gc/v3/exec_v1.go
@@ -354,9 +354,10 @@ func MakeSnapshotAndPitrFineFilter(
354
if transObjects[name] != nil {
355
tables := transObjects[name]
356
if entry := tables[tableID]; entry != nil {
357
-
+ // Check if the table still exists
358
+ _, ok := snapshotMeta.GetAccountId(tableID)
359
// The table has not been dropped, and the dropTS is empty, so it cannot be deleted.
- if entry.dropTS.IsEmpty() {
360
+ if entry.dropTS.IsEmpty() && ok {
361
continue
362
}
363
0 commit comments