Skip to content

Commit

Permalink
WIP remove the only usage of InitPut with FailOnTombstones
Browse files Browse the repository at this point in the history
  • Loading branch information
yuzefovich committed Dec 20, 2024
1 parent 951d890 commit 15879d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/sql/sqlliveness/slstorage/slstorage.go
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ func (s *Storage) Insert(

}
v := encodeValue(expiration)
batch.InitPut(k, &v, true)
batch.InitPut(k, &v, false /* failOnTombstones */)

return txn.CommitInBatch(ctx, batch)
}); err != nil {
Expand Down

0 comments on commit 15879d3

Please sign in to comment.