From 01bd82e1234f3b0e8aa6e52b5b5f6d3e600d236b Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Wed, 27 Mar 2024 11:08:24 -0600 Subject: [PATCH] hotfix: port influxql sql string fixes to clustered and dedicated --- .../cloud-dedicated/reference/sql/functions/string.md | 4 ++-- content/influxdb/clustered/reference/sql/functions/string.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/content/influxdb/cloud-dedicated/reference/sql/functions/string.md b/content/influxdb/cloud-dedicated/reference/sql/functions/string.md index ab24b58bf..700ce122a 100644 --- a/content/influxdb/cloud-dedicated/reference/sql/functions/string.md +++ b/content/influxdb/cloud-dedicated/reference/sql/functions/string.md @@ -240,7 +240,7 @@ LIMIT 3 Concatenates multiple strings together with a specified separator. ```sql -concat(separator, str[, ..., str_n]) +concat_ws(separator, str[, ..., str_n]) ``` ##### Arguments @@ -1484,7 +1484,7 @@ uuid() ``` {{< expand-wrapper >}} -{{% expand "View `upper` query example" %}} +{{% expand "View `uuid` query example" %}} _The following example uses the sample data set provided in the [Get started with InfluxDB tutorial](/influxdb/cloud-dedicated/get-started/write/#construct-line-protocol)._ diff --git a/content/influxdb/clustered/reference/sql/functions/string.md b/content/influxdb/clustered/reference/sql/functions/string.md index 0dbf40833..bb5639366 100644 --- a/content/influxdb/clustered/reference/sql/functions/string.md +++ b/content/influxdb/clustered/reference/sql/functions/string.md @@ -240,7 +240,7 @@ LIMIT 3 Concatenates multiple strings together with a specified separator. ```sql -concat(separator, str[, ..., str_n]) +concat_ws(separator, str[, ..., str_n]) ``` ##### Arguments @@ -1484,7 +1484,7 @@ uuid() ``` {{< expand-wrapper >}} -{{% expand "View `upper` query example" %}} +{{% expand "View `uuid` query example" %}} _The following example uses the sample data set provided in the [Get started with InfluxDB tutorial](/influxdb/clustered/get-started/write/#construct-line-protocol)._