@@ -433,7 +433,7 @@ func TestChunkEncodingRoundTrip(t *testing.T) {
433
433
} {
434
434
t .Run (fmt .Sprintf ("version %d nChks %d pageSize %d" , version , nChks , pageSize ), func (t * testing.T ) {
435
435
chks := mkChks (nChks )
436
- var w Writer
436
+ var w Creator
437
437
w .Version = version
438
438
primary := encoding .EncWrap (tsdb_enc.Encbuf {B : make ([]byte , 0 )})
439
439
scratch := encoding .EncWrap (tsdb_enc.Encbuf {B : make ([]byte , 0 )})
@@ -583,7 +583,7 @@ func TestSearchWithPageMarkers(t *testing.T) {
583
583
},
584
584
} {
585
585
t .Run (fmt .Sprintf ("%s-pagesize-%d" , tc .desc , pageSize ), func (t * testing.T ) {
586
- var w Writer
586
+ var w Creator
587
587
w .Version = FormatV3
588
588
primary := encoding .EncWrap (tsdb_enc.Encbuf {B : make ([]byte , 0 )})
589
589
scratch := encoding .EncWrap (tsdb_enc.Encbuf {B : make ([]byte , 0 )})
@@ -697,7 +697,7 @@ func TestDecoderChunkStats(t *testing.T) {
697
697
},
698
698
} {
699
699
t .Run (fmt .Sprintf ("%s_version=%d_pageSize=%d" , tc .desc , version , pageSize ), func (t * testing.T ) {
700
- var w Writer
700
+ var w Creator
701
701
w .Version = version
702
702
primary := encoding .EncWrap (tsdb_enc.Encbuf {B : make ([]byte , 0 )})
703
703
scratch := encoding .EncWrap (tsdb_enc.Encbuf {B : make ([]byte , 0 )})
@@ -722,7 +722,7 @@ func BenchmarkChunkStats(b *testing.B) {
722
722
from , through := int64 (nChks * 40 / 100 ), int64 (nChks * 60 / 100 )
723
723
for _ , version := range []int {FormatV2 , FormatV3 } {
724
724
b .Run (fmt .Sprintf ("version %d/%d chunks" , version , nChks ), func (b * testing.B ) {
725
- var w Writer
725
+ var w Creator
726
726
w .Version = version
727
727
primary := encoding .EncWrap (tsdb_enc.Encbuf {B : make ([]byte , 0 )})
728
728
scratch := encoding .EncWrap (tsdb_enc.Encbuf {B : make ([]byte , 0 )})
@@ -747,7 +747,7 @@ func BenchmarkReadChunks(b *testing.B) {
747
747
from , through := int64 (nChks * 40 / 100 ), int64 (nChks * 60 / 100 )
748
748
for _ , version := range []int {FormatV2 , FormatV3 } {
749
749
b .Run (fmt .Sprintf ("version %d/%d chunks" , version , nChks ), func (b * testing.B ) {
750
- var w Writer
750
+ var w Creator
751
751
w .Version = version
752
752
primary := encoding .EncWrap (tsdb_enc.Encbuf {B : make ([]byte , 0 )})
753
753
scratch := encoding .EncWrap (tsdb_enc.Encbuf {B : make ([]byte , 0 )})
0 commit comments