1
0
mirror of https://github.com/uptrace/go-clickhouse.git synced 2025-06-29 00:21:46 +02:00

chore: support Bool

This commit is contained in:
Vladimir Mihailenco
2023-01-21 12:21:36 +02:00
parent 017195b443
commit 12d4a6c4a5
3 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,7 @@ var (
) )
var chTypes = [...]string{ var chTypes = [...]string{
reflect.Bool: chtype.UInt8, reflect.Bool: chtype.Bool,
reflect.Int: chtype.Int64, reflect.Int: chtype.Int64,
reflect.Int8: chtype.Int8, reflect.Int8: chtype.Int8,
reflect.Int16: chtype.Int16, reflect.Int16: chtype.Int16,

View File

@ -1,4 +1,4 @@
# go-clickhouse benchmark examples # go-clickhouse benchmark examples
These examples allow to compare performance with 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).

View File

@ -6,7 +6,7 @@ replace github.com/uptrace/go-clickhouse => ../..
replace github.com/uptrace/go-clickhouse/chdebug => ../../chdebug 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 ( require (
github.com/codemodus/kace v0.5.1 // indirect github.com/codemodus/kace v0.5.1 // indirect