From 5c5b63af8c6700406b1143b75b0557f7a949ff06 Mon Sep 17 00:00:00 2001 From: barkhayot Date: Thu, 19 Dec 2024 23:36:27 +0900 Subject: [PATCH 1/2] chore: fix typos --- CHANGELOG.md | 2 +- TYPES.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e8ef2a3d0..acd8b7282d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -732,7 +732,7 @@ This release includes a guard to prevent release from being called more than onc ## 2.4.2, 2022-11-24 ### Bug Fixes - Don't panic on `Send()` on batch after invalid `Append`. [#830](https://github.com/ClickHouse/clickhouse-go/pull/830) -- Fix JSON issue with `nil` if column order is inconsisent. [#824](https://github.com/ClickHouse/clickhouse-go/pull/824) +- Fix JSON issue with `nil` if column order is inconsistent. [#824](https://github.com/ClickHouse/clickhouse-go/pull/824) ## 2.4.1, 2022-11-23 ### Bug Fixes diff --git a/TYPES.md b/TYPES.md index 6712539ede..fe1a746a4f 100644 --- a/TYPES.md +++ b/TYPES.md @@ -2,7 +2,7 @@ The following table aims to capture the Golang types supported for each ClickHou Whilst each ClickHouse type often has a logical Golang type, we aim to support implicit conversions where possible and provided no precision loss will be incurred - thus alleviating the need for users to ensure their data aligns perfectly with ClickHouse types. -This effort is ongoing and can be seperated in to insertion (`Append`/`AppendRow`) and read time (via a `Scan`). Should you need support for a specific conversion, please raise an issue. +This effort is ongoing and can be separated in to insertion (`Append`/`AppendRow`) and read time (via a `Scan`). Should you need support for a specific conversion, please raise an issue. ## Append Support From 87738cc914be6aefba0765b35880b0a7b9c296ac Mon Sep 17 00:00:00 2001 From: barkhayot Date: Thu, 19 Dec 2024 23:36:50 +0900 Subject: [PATCH 2/2] fix: lint --- .golangci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.golangci.yaml b/.golangci.yaml index 23e116a42c..44520afcc8 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -66,6 +66,6 @@ linters: - gofmt - govet - ineffassign - - importas + - imports - misspell - staticcheck