Fix override precedence
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user