Skip to content

Commit

Permalink
Merge pull request ClickHouse#1917 from DDtKey/docs-update-ch-connect…
Browse files Browse the repository at this point in the history
…-sink-types-supported

docs: update supported types by `clickhouse-kafka-connect-sink`
  • Loading branch information
justindeguzman authored Feb 26, 2024
2 parents 6d8c14e + ddf091a commit 7d43351
Showing 1 changed file with 17 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,23 +113,23 @@ Sink, use [Kafka Connect Transformations](https://docs.confluent.io/platform/cur

**With a schema declared:**

| Kafka Connect Type | ClickHouse Type | Supported | Primitive |
| --------------------------------------- | ------------------------- | --------- | --------- |
| STRING | String || Yes |
| INT8 | Int8 || Yes |
| INT16 | Int16 || Yes |
| INT32 | Int32 || Yes |
| INT64 | Int64 || Yes |
| FLOAT32 | Float32 || Yes |
| FLOAT64 | Float64 || Yes |
| BOOLEAN | Boolean || Yes |
| ARRAY | Array(Primitive) || No |
| MAP | Map(Primitive, Primitive) || No |
| STRUCT | N/A || No |
| BYTES | String || No |
| org.apache.kafka.connect.data.Time | Int64 / DateTime64 || No |
| org.apache.kafka.connect.data.Timestamp | Int32 / Date32 || No |
| org.apache.kafka.connect.data.Decimal | Decimal || No |
| Kafka Connect Type | ClickHouse Type | Supported | Primitive |
| --------------------------------------- |--------------------| --------- | --------- |
| STRING | String || Yes |
| INT8 | Int8 || Yes |
| INT16 | Int16 || Yes |
| INT32 | Int32 || Yes |
| INT64 | Int64 || Yes |
| FLOAT32 | Float32 || Yes |
| FLOAT64 | Float64 || Yes |
| BOOLEAN | Boolean || Yes |
| ARRAY | Array(T) || No |
| MAP | Map(Primitive, T) || No |
| STRUCT | N/A || No |
| BYTES | String || No |
| org.apache.kafka.connect.data.Time | Int64 / DateTime64 || No |
| org.apache.kafka.connect.data.Timestamp | Int32 / Date32 || No |
| org.apache.kafka.connect.data.Decimal | Decimal || No |

**Without a schema declared:**

Expand Down

0 comments on commit 7d43351

Please sign in to comment.