memsql / dbbench

Database Benchmark Tool
Apache License 2.0
155 stars 30 forks source link

Only works on releases >= 1.16 #17

Open lrogers-memsql opened 2 years ago

lrogers-memsql commented 2 years ago

As noted in the CirclCI testing dbbench fails to build on versions 1.10 - 1.14 (only works on latest 1.17)

The PR in October makes use of flag.Func which was added in go release 1.16

The README states:

dbbench requires golang version >= 1.10.

However versions prior to 1.16 will not work because they can not use flag.Func

Some info on flag.Func addition to 1.16: https://blog.carlmjohnson.net/post/2020/add-func/