From 3b11e1700cd6c5b462815b656274bcf4b6b7f168 Mon Sep 17 00:00:00 2001 From: Walter Date: Wed, 22 Jul 2026 21:46:23 +0800 Subject: [PATCH] docs(clickhouse): add Int64 and Array to supported data types Both types are declared in the connector spec but missing from the table. Insertion positions follow the spec's own declaration order: Int64 sits between UInt32 and UInt64, matching the table's existing ordering. Array carries queryOnly: true in the spec. No boundary note is added here: 7 of the 8 queryOnly types in this table (including Tuple, on the same row) are already listed without any note, so annotating only Array would imply a distinction that does not exist in the code. Evidence: connectors/clickhouse-connector/src/main/resources/spec_clickhouse.json:579 Int64 connectors/clickhouse-connector/src/main/resources/spec_clickhouse.json:729 Array tapdata-connectors @ 76fbafd39a2739ab847eb12fb0c38511eade112f DocsLoop-Task: T-1 --- docs/connectors/warehouses-and-lake/clickhouse.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/connectors/warehouses-and-lake/clickhouse.md b/docs/connectors/warehouses-and-lake/clickhouse.md index 0e0f99e3..6cc221c9 100644 --- a/docs/connectors/warehouses-and-lake/clickhouse.md +++ b/docs/connectors/warehouses-and-lake/clickhouse.md @@ -18,12 +18,12 @@ ClickHouse 20.x, 21.x, 22.x, 23.x, 24.x | Category | Data Types | | ----------- | ------------------------------------------------------------ | | String | FixedString, String, UUID | -| Integer | Int8, UInt8, Int16, UInt16, Int32, UInt32, UInt64, Int128, UInt128, Int256, UInt256 | +| Integer | Int8, UInt8, Int16, UInt16, Int32, UInt32, Int64, UInt64, Int128, UInt128, Int256, UInt256 | | Floating | Float32, Float64 | | Numeric | Decimal | | Date/Time | Date, Date32, DateTime, DateTime64 | | Enumeration | Enum8, Enum16 | -| Composite | Tuple | +| Composite | Array, Tuple | ## SQL Operations for Sync