Skip to content

Commit 04c513c

Browse files
authored
Merge branch 'main' into Blargian-patch-399150
2 parents c882fc6 + 8c5a3cc commit 04c513c

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

docs/cloud/onboard/02_migrate/01_migration_guides/03_bigquery/01_overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ In the following, we provide a mapping of array operations from BigQuery to Clic
170170
| [ARRAY_CONCAT](https://cloud.google.com/bigquery/docs/reference/standard-sql/array_functions#array_concat) | [arrayConcat](/sql-reference/functions/array-functions#arrayConcat) |
171171
| [ARRAY_LENGTH](https://cloud.google.com/bigquery/docs/reference/standard-sql/array_functions#array_length) | [length](/sql-reference/functions/array-functions#length) |
172172
| [ARRAY_REVERSE](https://cloud.google.com/bigquery/docs/reference/standard-sql/array_functions#array_reverse) | [arrayReverse](/sql-reference/functions/array-functions#arrayReverse) |
173-
| [ARRAY_TO_STRING](https://cloud.google.com/bigquery/docs/reference/standard-sql/array_functions#array_to_string) | [arrayStringConcat](/sql-reference/functions/splitting-merging-functions#arraystringconcat) |
173+
| [ARRAY_TO_STRING](https://cloud.google.com/bigquery/docs/reference/standard-sql/array_functions#array_to_string) | [arrayStringConcat](/sql-reference/functions/splitting-merging-functions#arrayStringConcat) |
174174
| [GENERATE_ARRAY](https://cloud.google.com/bigquery/docs/reference/standard-sql/array_functions#generate_array) | [range](/sql-reference/functions/array-functions#range) |
175175

176176
**Create an array with one element for each row in a subquery**

docs/integrations/data-visualization/tableau/tableau-analysis-tips.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ ClickHouse has a huge number of functions that can be used for data analysis —
5757
- **`SKEWNESS([my_number])`** — Computes the sample skewness of a sequence. Equivalent of [`skewSamp()`](/sql-reference/aggregate-functions/reference/skewsamp).
5858
- **`SKEWNESSP([my_number])`** — Computes the skewness of a sequence. Equivalent of [`skewPop()`](/sql-reference/aggregate-functions/reference/skewpop).
5959
- **`TO_TYPE_NAME([field])`** *(added in v0.2.1)* — Returns a string containing the ClickHouse type name of the passed argument. Equivalent of [`toTypeName()`](/sql-reference/functions/other-functions#toTypeName).
60-
- **`TRUNC([my_float])`** — It is the same as the `FLOOR([my_float])` function. Equivalent of [`trunc()`](/sql-reference/functions/rounding-functions#truncate).
60+
- **`TRUNC([my_float])`** — It is the same as the `FLOOR([my_float])` function. Equivalent of [`trunc()`](/sql-reference/functions/rounding-functions#trunc).
6161
- **`UNHEX([my_string])`** *(added in v0.2.1)* — Performs the opposite operation of `HEX()`. Equivalent of [`unhex()`](/sql-reference/functions/encoding-functions#unhex).

scripts/settings/autogenerate-settings.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,7 @@ if [ -f "$FUNCTION_SQL_FILE" ]; then
278278
"Other"
279279
"Time Window"
280280
"String Replacement"
281+
"Tuple"
281282
)
282283

283284
for CATEGORY in "${FUNCTION_CATEGORIES[@]}"; do
@@ -400,6 +401,7 @@ insert_src_files=(
400401
"other-functions.md"
401402
"time_window-functions.md"
402403
"string_replacement-functions.md"
404+
"tuple-functions.md"
403405
)
404406

405407
insert_dest_files=(
@@ -430,6 +432,7 @@ insert_dest_files=(
430432
"docs/sql-reference/functions/other-functions.md"
431433
"docs/sql-reference/functions/time-window-functions.md"
432434
"docs/sql-reference/functions/string-replace-functions.md"
435+
"docs/sql-reference/functions/tuple-functions.md"
433436
)
434437

435438
echo "[$SCRIPT_NAME] Inserting generated markdown content between AUTOGENERATED_START and AUTOGENERATED_END tags"

0 commit comments

Comments
 (0)