Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
maurodelazeri committed Jan 6, 2023
1 parent 50ceb50 commit 2fe3fc9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion leveldb/batch.go
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,6 @@ func (b *Batch) decode(data []byte, expectedLen int) error {
func (b *Batch) putMem(seq uint64, mdb *memdb.DB) error {
var ik []byte
for i, index := range b.index {
fmt.Println("leveldb putMem", seq, index.keyType.String(), string(index.v(b.data)))
ik = makeInternalKey(ik, index.k(b.data), seq+uint64(i), index.keyType)
if err := mdb.Put(ik, index.v(b.data)); err != nil {
return err
Expand Down

0 comments on commit 2fe3fc9

Please sign in to comment.