You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`jdbcUrl`| The ClickHouse JDBC URL in the format `jdbc:clickhouse://{host}:{port}/{schema}`. | ✅ | Don't add the username and password as JDBC options. Any other JDBC option could be added at the end of the JDBC URL. For ClickHouse Cloud users, add `ssl=true&sslmode=NONE` to the `jdbcUrl`. |
30
+
|`jdbcUrl`| The ClickHouse JDBC URL in the format `jdbc:clickhouse://<host>:<port>/<schema>`. | ✅ | Don't add the username and password as JDBC options. Any other JDBC option could be added at the end of the JDBC URL. For ClickHouse Cloud users, add `ssl=true&sslmode=NONE` to the `jdbcUrl`. |
31
31
|`clickHouseUsername`| The ClickHouse username to authenticate with. | ✅ ||
32
32
|`clickHousePassword`| The ClickHouse password to authenticate with. | ✅ ||
33
33
|`clickHouseTable`| The target ClickHouse table name to insert the data to. | ✅ ||
@@ -69,15 +69,15 @@ target table.
69
69
The BigQuery types are converted based on your ClickHouse table definition. Therefore, the above table lists the
70
70
recommended mapping you should have in your target ClickHouse table (for a given BigQuery table/query):
|[**Array Type**](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#array_type)|[**Array Type**](../../../sql-reference/data-types/array){:target="_blank"}| The inner type must be one of the supported primitive data types listed in this table. |
|[**Datetime Type**](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#datetime_type)|[**Datetime Type**](../../../sql-reference/data-types/datetime)| Works as well with `Enum8`, `Enum16` and `FixedString`. |
78
-
|[**String Type**](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#string_type)|[**String Type**](../../../sql-reference/data-types/string)| In BigQuery all Int types (`INT`, `SMALLINT`, `INTEGER`, `BIGINT`, `TINYINT`, `BYTEINT`) are aliases to `INT64`. We recommend you setting in ClickHouse the right Integer size, as the template will convert the column based on the defined column type (`Int8`, `Int16`, `Int32`, `Int64`). |
79
-
|[**Numeric - Integer Types**](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#numeric_types)|[**Integer Types**](../../../sql-reference/data-types/int-uint)| In BigQuery all Int types (`INT`, `SMALLINT`, `INTEGER`, `BIGINT`, `TINYINT`, `BYTEINT`) are aliases to `INT64`. We recommend you setting in ClickHouse the right Integer size, as the template will convert the column based on the defined column type (`Int8`, `Int16`, `Int32`, `Int64`). The template will also convert unassigned Int types if used in ClickHouse table (`UInt8`, `UInt16`, `UInt32`, `UInt64`). |
|[**Array Type**](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#array_type)|[**Array Type**](../../../sql-reference/data-types/array)| The inner type must be one of the supported primitive data types listed in this table. |
|[**Datetime Type**](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#datetime_type)|[**Datetime Type**](../../../sql-reference/data-types/datetime)| Works as well with `Enum8`, `Enum16` and `FixedString`. |
78
+
|[**String Type**](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#string_type)|[**String Type**](../../../sql-reference/data-types/string)| In BigQuery all Int types (`INT`, `SMALLINT`, `INTEGER`, `BIGINT`, `TINYINT`, `BYTEINT`) are aliases to `INT64`. We recommend you setting in ClickHouse the right Integer size, as the template will convert the column based on the defined column type (`Int8`, `Int16`, `Int32`, `Int64`). |
79
+
|[**Numeric - Integer Types**](https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types#numeric_types)|[**Integer Types**](../../../sql-reference/data-types/int-uint)| In BigQuery all Int types (`INT`, `SMALLINT`, `INTEGER`, `BIGINT`, `TINYINT`, `BYTEINT`) are aliases to `INT64`. We recommend you setting in ClickHouse the right Integer size, as the template will convert the column based on the defined column type (`Int8`, `Int16`, `Int32`, `Int64`). The template will also convert unassigned Int types if used in ClickHouse table (`UInt8`, `UInt16`, `UInt32`, `UInt64`). |
0 commit comments