Skip to content

Commit

Permalink
chore: support Bool
Browse files Browse the repository at this point in the history
  • Loading branch information
vmihailenco committed Jan 21, 2023
1 parent 017195b commit 12d4a6c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ch/chschema/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ var (
)

var chTypes = [...]string{
reflect.Bool: chtype.UInt8,
reflect.Bool: chtype.Bool,
reflect.Int: chtype.Int64,
reflect.Int8: chtype.Int8,
reflect.Int16: chtype.Int16,
Expand Down
2 changes: 1 addition & 1 deletion example/benchmark/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# go-clickhouse benchmark examples

These examples allow to compare performance with
[clickhouse-go](https://github.com/ClickHouse/clickhouse-go/tree/v2/benchmark/v2).
[clickhouse-go](https://github.com/ClickHouse/clickhouse-go/tree/main/benchmark/v2).
2 changes: 1 addition & 1 deletion example/benchmark/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ replace github.com/uptrace/go-clickhouse => ../..

replace github.com/uptrace/go-clickhouse/chdebug => ../../chdebug

require github.com/uptrace/go-clickhouse v0.2.9
require github.com/uptrace/go-clickhouse v0.0.0-00010101000000-000000000000

require (
github.com/codemodus/kace v0.5.1 // indirect
Expand Down

0 comments on commit 12d4a6c

Please sign in to comment.