You've already forked go-clickhouse
mirror of
https://github.com/uptrace/go-clickhouse.git
synced 2025-07-03 00:27:03 +02:00
chore: update readme
This commit is contained in:
@ -18,13 +18,14 @@ Main features are:
|
|||||||
- ClickHouse native protocol support and efficient column-oriented design.
|
- ClickHouse native protocol support and efficient column-oriented design.
|
||||||
- API compatible with database/sql.
|
- API compatible with database/sql.
|
||||||
- [Bun](https://github.com/uptrace/bun/)-like query builder.
|
- [Bun](https://github.com/uptrace/bun/)-like query builder.
|
||||||
- [Selecting](https://clickhouse.uptrace.dev/guide/query-select.html) into scalars, structs, maps,
|
- [Selecting](https://clickhouse.uptrace.dev/guide/clickhouse-select.html) into scalars, structs,
|
||||||
slices of maps/structs/scalars.
|
maps, slices of maps/structs/scalars.
|
||||||
- `Array(T)` including nested arrays.
|
- `Array(T)` including nested arrays.
|
||||||
- Enums and `LowCardinality(String)`.
|
- Enums and `LowCardinality(String)`.
|
||||||
- `Nullable(T)` except `Nullable(Array(T))`.
|
- `Nullable(T)` except `Nullable(Array(T))`.
|
||||||
- [Migrations](https://clickhouse.uptrace.dev/guide/migrations.html).
|
- [Migrations](https://clickhouse.uptrace.dev/guide/clickhouse-migrations.html).
|
||||||
- [OpenTelemetry](https://clickhouse.uptrace.dev/guide/monitoring.html) support.
|
- [OpenTelemetry](https://clickhouse.uptrace.dev/guide/clickhouse-monitoring-performance.html)
|
||||||
|
support.
|
||||||
- In production at [Uptrace](https://uptrace.dev/)
|
- In production at [Uptrace](https://uptrace.dev/)
|
||||||
|
|
||||||
Unsupported:
|
Unsupported:
|
||||||
|
@ -36,4 +36,5 @@ To create a SQL migration:
|
|||||||
go run . db create_sql sql_migration_name
|
go run . db create_sql sql_migration_name
|
||||||
```
|
```
|
||||||
|
|
||||||
See [docs](https://clickhouse.uptrace.dev/guide/migrations.html) for details.
|
See [ClickHouse migrations](https://clickhouse.uptrace.dev/guide/clickhouse-migrations.html) for
|
||||||
|
details.
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
# Example for go-clickhouse OpenTelemetry instrumentation
|
# Example for go-clickhouse OpenTelemetry instrumentation
|
||||||
|
|
||||||
See [Performance and errors monitoring](https://clickhouse.uptrace.dev/guide/monitoring.html) for
|
See
|
||||||
details.
|
[Performance and errors monitoring](https://clickhouse.uptrace.dev/guide/clickhouse-monitoring-performance.html)
|
||||||
|
for details.
|
||||||
|
|
||||||
You can run this example with different OpenTelemetry exporters by providing environment variables.
|
You can run this example with different OpenTelemetry exporters by providing environment variables.
|
||||||
|
|
||||||
|
@ -6,4 +6,6 @@ To run this example:
|
|||||||
go run .
|
go run .
|
||||||
```
|
```
|
||||||
|
|
||||||
See [docs](https://clickhouse.uptrace.dev/guide/placeholders.html) for details.
|
See
|
||||||
|
[ClickHouse SQL placeholders](https://clickhouse.uptrace.dev/guide/clickhouse-sql-placeholders.html)
|
||||||
|
for details.
|
||||||
|
Reference in New Issue
Block a user