Skip to content

Commit 215b4b5

Browse files
committed
update link
1 parent fdfdc98 commit 215b4b5

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

docs/integrations/data-ingestion/clickpipes/kafka/03_reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ The following standard ClickHouse data types are currently supported in ClickPip
6161

6262
#### Supported Avro Data Types {#supported-avro-data-types}
6363

64-
ClickPipes supports all Avro Primitive and Complex types, and all Avro Logical types except `time-millis`, `time-micros`, `local-timestamp-millis`, `local_timestamp-micros`, and `duration`. Avro `record` types are converted to Tuple, `array` types to Array, and `map` to Map (string keys only). In general the conversions listed [here](/interfaces/formats/Avro#data-types-matching) are available. We recommend using exact type matching for Avro numeric types, as ClickPipes does not check for overflow or precision loss on type conversion.
64+
ClickPipes supports all Avro Primitive and Complex types, and all Avro Logical types except `time-millis`, `time-micros`, `local-timestamp-millis`, `local_timestamp-micros`, and `duration`. Avro `record` types are converted to Tuple, `array` types to Array, and `map` to Map (string keys only). In general the conversions listed [here](/interfaces/formats/Avro#data-type-mapping) are available. We recommend using exact type matching for Avro numeric types, as ClickPipes does not check for overflow or precision loss on type conversion.
6565

6666
#### Nullable types and Avro unions {#nullable-types-and-avro-unions}
6767

docs/integrations/data-ingestion/data-formats/arrow-avro-orc.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ FORMAT Avro;
5050

5151
### Avro and ClickHouse data types {#avro-and-clickhouse-data-types}
5252

53-
Consider [data types matching](/interfaces/formats/Avro#data-types-matching) when importing or exporting Avro files. Use explicit type casting to convert when loading data from Avro files:
53+
Consider [data types matching](/interfaces/formats/Avro#data-type-mapping) when importing or exporting Avro files. Use explicit type casting to convert when loading data from Avro files:
5454

5555
```sql
5656
SELECT
@@ -102,7 +102,7 @@ INTO OUTFILE 'export.arrow'
102102
FORMAT Arrow
103103
```
104104

105-
Also, check [data types matching](/interfaces/formats/Arrow#data-types-matching) to know if any should be converted manually.
105+
Also, check [data types matching](/interfaces/formats/Arrow#data-type-mapping) to know if any should be converted manually.
106106

107107
### Arrow data streaming {#arrow-data-streaming}
108108

scripts/sed_links.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
if [[ "$OSTYPE" == "darwin"* ]]; then
1111
# macOS
1212
sed -i '' 's|(../../quick-start\.mdx)|(/get-started/quick-start)|g' docs/operations/utilities/clickhouse-local.md
13+
sed -i 's/{#data-types-matching}/{#data-type-mapping}/g' docs/interfaces/formats/Avro/Avro.md
1314
else
1415
# Linux
1516
sed -i 's|(../../quick-start\.mdx)|(/get-started/quick-start)|g' docs/operations/utilities/clickhouse-local.md
17+
sed -i 's/{#data-types-matching}/{#data-type-mapping}/g' docs/interfaces/formats/Avro/Avro.md
1618
fi

0 commit comments

Comments
 (0)