github.com/cockroachdb/cockroach@v20.2.0-alpha.1+incompatible/pkg/storage/testdata/diskmap_duplicates_pebble (about) 1 new-map dups duplicates=true 2 ---- 3 4 batch dups 5 put a 1 6 put b 2 7 put a 3 8 ---- 9 10 iter dups 11 rewind 12 next 13 next 14 next 15 ---- 16 a:1 17 a:3 18 b:2 19 . 20 21 batch dups 22 put d3 3 23 put cd 2 24 put c 1 25 ---- 26 27 iter dups 28 rewind 29 next 30 next 31 next 32 next 33 next 34 next 35 ---- 36 a:1 37 a:3 38 b:2 39 c:1 40 cd:2 41 d3:3 42 . 43 44 iter dups 45 rewind 46 next 47 next 48 rewind 49 next 50 seek c 51 next 52 next 53 next 54 ---- 55 a:1 56 a:3 57 b:2 58 a:1 59 a:3 60 c:1 61 cd:2 62 d3:3 63 . 64 65 close-map dups 66 ----