From dee043410f052eab4fc2294e5b73d152d04c4eef Mon Sep 17 00:00:00 2001 From: Ryan Date: Fri, 6 Oct 2023 14:32:07 -0400 Subject: [PATCH] chore: specify method field on compression in example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f0e6a0f9e9..d27f75271e 100644 --- a/README.md +++ b/README.md @@ -126,7 +126,7 @@ conn := clickhouse.OpenDB(&clickhouse.Options{ }, DialTimeout: time.Second * 30, Compression: &clickhouse.Compression{ - clickhouse.CompressionLZ4, + Method: clickhouse.CompressionLZ4, }, Debug: true, BlockBufferSize: 10,