From 90581f5a1a06a7d5ff01506f35d50a70ae62b911 Mon Sep 17 00:00:00 2001 From: Stepan Rabotkin Date: Thu, 3 Oct 2024 10:24:19 +0300 Subject: [PATCH] docs: add clickhouse-go-rows-utils to third-party libraries (#1413) --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 533a90386a..62d88721d5 100644 --- a/README.md +++ b/README.md @@ -327,6 +327,10 @@ go get -u github.com/ClickHouse/clickhouse-go/v2 * [bind params](examples/std/bind.go) (deprecated in favour of native query parameters) * [client info](examples/std/client_info.go) +## Third-party libraries + +* [clickhouse-go-rows-utils](https://github.com/EpicStep/clickhouse-go-rows-utils) - utilities that simplify working with rows. + ## ClickHouse alternatives - ch-go Versions of this client >=2.3.x utilise [ch-go](https://github.com/ClickHouse/ch-go) for their low level encoding/decoding. This low lever client provides a high performance columnar interface and should be used in performance critical use cases. This client provides more familar row orientated and `database/sql` semantics at the cost of some performance.