Fix override precedence

This commit is contained in:
2026-05-14 11:43:52 +02:00
parent 8fcf0863cc
commit 4449fa4f0e
2 changed files with 81 additions and 3 deletions
+3 -3
View File
@@ -1117,14 +1117,14 @@ func pruneLockDataToActiveRows(lockData map[string]int, rows []map[string]any, r
}
pruned := 0
for key := range lockData {
if _, ok := activeKeys[key]; ok {
continue
}
if _, retired := retiredKeys[key]; retired {
delete(lockData, key)
pruned++
continue
}
if _, ok := activeKeys[key]; ok {
continue
}
if _, ok := referencedKeys[key]; ok {
continue
}