Skip to content

Commit 2668c87

Browse files
committed
fix link
1 parent 1094d25 commit 2668c87

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/preview/sql/functions/blob.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This section describes functions and operators for examining and manipulating [`
1212

1313
| Name | Description |
1414
|:--|:-------|
15-
| [`arg1 || arg2`](#arg1--arg2) | Concatenates two strings, lists, or blobs. Any `NULL` input results in `NULL`. See also [`concat(arg1, arg2, ...)`](#concatvalue) and [`list_concat(list1, list2)`]({% link docs/preview/sql/functions/list.md %}#list_concatlist1-list2). |
15+
| [`arg1 || arg2`](#arg1--arg2) | Concatenates two strings, lists, or blobs. Any `NULL` input results in `NULL`. See also [`concat(arg1, arg2, ...)`](#concatvalue-) and [`list_concat(list1, list2)`]({% link docs/preview/sql/functions/list.md %}#list_concatlist1-list2). |
1616
| [`base64(blob)`](#base64blob) | Converts a `blob` to a base64 encoded string. |
1717
| [`concat(value, ...)`](#concatvalue-) | Concatenates multiple strings, lists, or blobs. `NULL` inputs are skipped. See also [operator `||`](#arg1--arg2). |
1818
| [`decode(blob)`](#decodeblob) | Converts `blob` to `VARCHAR`. Fails if `blob` is not valid UTF-8. |
@@ -39,7 +39,7 @@ This section describes functions and operators for examining and manipulating [`
3939

4040
<div class="nostroke_table"></div>
4141

42-
| **Description** | Concatenates two strings, lists, or blobs. Any `NULL` input results in `NULL`. See also [`concat(arg1, arg2, ...)`](#concatvalue) and [`list_concat(list1, list2)`]({% link docs/preview/sql/functions/list.md %}#list_concatlist1-list2). |
42+
| **Description** | Concatenates two strings, lists, or blobs. Any `NULL` input results in `NULL`. See also [`concat(arg1, arg2, ...)`](#concatvalue-) and [`list_concat(list1, list2)`]({% link docs/preview/sql/functions/list.md %}#list_concatlist1-list2). |
4343
| **Example 1** | `'Duck' || 'DB'` |
4444
| **Result** | `DuckDB` |
4545
| **Example 2** | `[1, 2, 3] || [4, 5, 6]` |

docs/preview/sql/functions/text.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This section describes functions and operators for examining and manipulating [`
2222
| [`string LIKE target`](#string-like-target) | Returns `true` if the `string` matches the like specifier (see [Pattern Matching]({% link docs/preview/sql/functions/pattern_matching.md %})). |
2323
| [`string SIMILAR TO regex`](#string-similar-to-regex) | Returns `true` if the `string` matches the `regex` (see [Pattern Matching]({% link docs/preview/sql/functions/pattern_matching.md %})). |
2424
| [`string ^@ search_string`](#string--search_string) | Returns `true` if `string` begins with `search_string`. |
25-
| [`arg1 || arg2`](#arg1--arg2) | Concatenates two strings, lists, or blobs. Any `NULL` input results in `NULL`. See also [`concat(arg1, arg2, ...)`](#concatvalue) and [`list_concat(list1, list2)`]({% link docs/preview/sql/functions/list.md %}#list_concatlist1-list2). |
25+
| [`arg1 || arg2`](#arg1--arg2) | Concatenates two strings, lists, or blobs. Any `NULL` input results in `NULL`. See also [`concat(arg1, arg2, ...)`](#concatvalue-) and [`list_concat(list1, list2)`]({% link docs/preview/sql/functions/list.md %}#list_concatlist1-list2). |
2626
| [`array_extract(string, index)`](#array_extractstring-index) | Extracts a single character from a `string` using a (1-based) `index`. |
2727
| [`array_slice(list, begin, end)`](#array_slicelist-begin-end) | Extracts a sublist or substring using [slice conventions]({% link docs/preview/sql/functions/list.md %}#slicing). Negative values are accepted. |
2828
| [`ascii(string)`](#asciistring) | Returns an integer that represents the Unicode code point of the first character of the `string`. |
@@ -173,7 +173,7 @@ This section describes functions and operators for examining and manipulating [`
173173

174174
<div class="nostroke_table"></div>
175175

176-
| **Description** | Concatenates two strings, lists, or blobs. Any `NULL` input results in `NULL`. See also [`concat(arg1, arg2, ...)`](#concatvalue) and [`list_concat(list1, list2)`]({% link docs/preview/sql/functions/list.md %}#list_concatlist1-list2). |
176+
| **Description** | Concatenates two strings, lists, or blobs. Any `NULL` input results in `NULL`. See also [`concat(arg1, arg2, ...)`](#concatvalue-) and [`list_concat(list1, list2)`]({% link docs/preview/sql/functions/list.md %}#list_concatlist1-list2). |
177177
| **Example 1** | `'Duck' || 'DB'` |
178178
| **Result** | `DuckDB` |
179179
| **Example 2** | `[1, 2, 3] || [4, 5, 6]` |

scripts/generate_sql_function_docs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ class DocFunction:
133133

134134
PAGE_LINKS = {
135135
# intra-page links:
136-
'`concat(arg1, arg2, ...)`': "#concatvalue",
136+
'`concat(arg1, arg2, ...)`': "#concatvalue-",
137137
'operator `||`': "#arg1--arg2",
138138
'fmt syntax': "#fmt-syntax",
139139
'printf syntax': '#printf-syntax',

0 commit comments

Comments
 (0)