Update golangci-lint and turn it on in CI

This commit is contained in:
Dmitry Kropachev
2024-06-14 13:07:21 -04:00
committed by Sylwia Szunejko
parent a9ab270196
commit ab80d70106
37 changed files with 225 additions and 151 deletions

View File

@@ -17,16 +17,16 @@ import (
// initializer specifies an value for a column in an insert operation.
type initializer struct {
column string
value value
column string
}
// InsertBuilder builds CQL INSERT statements.
type InsertBuilder struct {
table string
columns []initializer
unique bool
using using
unique bool
json bool
}