(i int, j int)
| 880 | } |
| 881 | |
| 882 | func makeTraceID(i int, j int) []byte { |
| 883 | id := make([]byte, 16) |
| 884 | binary.LittleEndian.PutUint64(id, uint64(i)) |
| 885 | binary.LittleEndian.PutUint64(id[8:], uint64(j)) |
| 886 | return id |
| 887 | } |
| 888 | |
| 889 | func BenchmarkCompaction(b *testing.B) { |
| 890 | for _, enc := range encoding.AllEncodingsForWrites() { |
no outgoing calls
no test coverage detected