Skip to content

Commit

Permalink
fix benchmark rows
Browse files Browse the repository at this point in the history
  • Loading branch information
gavincabbage committed Sep 29, 2019
1 parent bb38d1d commit 302a753
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chiv_benchmark_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ func BenchmarkArchiver_Archive(b *testing.B) {
}

type benchmarkRows struct {
columnTypes []chiv.Column
columnTypes []*sql.ColumnType
column sql.RawBytes
ndx, max int
}

func (r *benchmarkRows) ColumnTypes() ([]chiv.Column, error) {
func (r *benchmarkRows) ColumnTypes() ([]*sql.ColumnType, error) {
return r.columnTypes, nil
}

Expand Down

0 comments on commit 302a753

Please sign in to comment.