Releases: ClickHouse/clickhouse-go
Releases Β· ClickHouse/clickhouse-go
v2.8.0
v2.7.0
v2.6.5
v2.6.4
v2.6.3
v2.6.2
Bug fixes
- Fix decimal encoding with non-standard exponential representation #909 by @vogrelord
- Add extra padding for strings shorter than FixedColumn length #910 by @jkaflik
Chore
- Remove Yandex ClickHouse image from Makefile #895 by @alexey-milovidov
- Remove duplicate of error handling #898 by @Astemirdum
- Bump github.com/ClickHouse/ch-go from 0.51.2 to 0.52.1 #901
v2.6.1
v2.6.0
v2.6.0, 2023-01-27
New features
Bug fixes
Chore
v2.5.1
v2.5.0
New features
- Buffered compression column by column for a native protocol. Introduces the
MaxCompressionBuffer
option - max size (bytes) of compression buffer during column-by-column compression (default 10MiB) #808 by @gingerwizard and @jkaflik - Support custom types that implement
sql.Scanner
interface (e.g.type customString string
) #850 by @DarkDrim - Append query options to the context instead of overwriting #860 by @aaron276h
- Query parameters support #854 by @jkaflik
- Expose
DialStrategy
function to the user for custom connection routing. #855 by @jkaflik
Bug fixes
- Close connection on
Cancel
. This is to make sure context timed out/canceled connection is not reused further #764 by @gingerwizard - Fully parse
secure
andskip_verify
in DSN query parameters. #862 by @n-oden