diff options
author | Ivan Katkov <44121163+Pseudolukian@users.noreply.github.com> | 2024-01-09 14:05:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-09 20:05:40 +0700 |
commit | f1a7c12f38612b13e24b53f8a767df248c50bf74 (patch) | |
tree | c5616154526c0a8efccb25b19340b058b01f335a | |
parent | cb4193d60c84f1e4f8de32f1fc3b316014b92a9a (diff) | |
download | ydb-f1a7c12f38612b13e24b53f8a767df248c50bf74.tar.gz |
Fix error in doc build. (#886)
-rw-r--r-- | ydb/docs/en/core/postgresql/_includes/functions.md (renamed from ydb/docs/_includes/postgresql/functions.md) | 2 | ||||
-rw-r--r-- | ydb/docs/en/core/postgresql/functions.md | 2 | ||||
-rw-r--r-- | ydb/docs/ru/core/postgresql/_includes/functions.md | 2 | ||||
-rw-r--r-- | ydb/docs/ru/core/postgresql/functions.md | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/ydb/docs/_includes/postgresql/functions.md b/ydb/docs/en/core/postgresql/_includes/functions.md index 57e9e991a3..317a805288 100644 --- a/ydb/docs/_includes/postgresql/functions.md +++ b/ydb/docs/en/core/postgresql/_includes/functions.md @@ -3580,7 +3580,7 @@ The SQL/JSON standard borrows its definition for regular expressions from the LI Keep in mind that the pattern argument of like_regex is a JSON path string literal, written according to the rules given in Section 8.14.7. This means in particular that any backslashes you want to use in the regular expression must be doubled. For example, to match string values of the root document that contain only digits:
-$.* ? (@ like_regex "^\\d+$")
+`$.* ? (@ like_regex "^\\d+$")`
## 9.17. Sequence Manipulation Functions (NOT SUPPORTED) {#sequence-manipulation-functions}
diff --git a/ydb/docs/en/core/postgresql/functions.md b/ydb/docs/en/core/postgresql/functions.md index e1383c3acb..b143a7f80c 100644 --- a/ydb/docs/en/core/postgresql/functions.md +++ b/ydb/docs/en/core/postgresql/functions.md @@ -3,5 +3,5 @@ This section contains PostgreSQL functions supported in the YDB compatibility mode with PostgreSQL. The original structure of the PostgreSQL documentation and examples of function application are preserved in the section. This article is automatically supplemented and tested. -{% include [functions.md](../../_includes/postgresql/functions.md) %} +{% include [functions](./_includes/functions.md) %} diff --git a/ydb/docs/ru/core/postgresql/_includes/functions.md b/ydb/docs/ru/core/postgresql/_includes/functions.md index 57e9e991a3..317a805288 100644 --- a/ydb/docs/ru/core/postgresql/_includes/functions.md +++ b/ydb/docs/ru/core/postgresql/_includes/functions.md @@ -3580,7 +3580,7 @@ The SQL/JSON standard borrows its definition for regular expressions from the LI Keep in mind that the pattern argument of like_regex is a JSON path string literal, written according to the rules given in Section 8.14.7. This means in particular that any backslashes you want to use in the regular expression must be doubled. For example, to match string values of the root document that contain only digits:
-$.* ? (@ like_regex "^\\d+$")
+`$.* ? (@ like_regex "^\\d+$")`
## 9.17. Sequence Manipulation Functions (NOT SUPPORTED) {#sequence-manipulation-functions}
diff --git a/ydb/docs/ru/core/postgresql/functions.md b/ydb/docs/ru/core/postgresql/functions.md index bf47c94104..59b8c6d564 100644 --- a/ydb/docs/ru/core/postgresql/functions.md +++ b/ydb/docs/ru/core/postgresql/functions.md @@ -2,4 +2,4 @@ В данном разделе содержатся PostgreSQL функции, поддерживаемые в режиме совместимости YDB с PostgreSQL. В разделе сохранены оригинальная структура документации PostgreSQL и примеры применения функций. Данная статья автоматически пополняется и тестируется, поэтому текст представлен только на английском языке. -{% include [functions.md](./_includes/functions.md) %}
\ No newline at end of file +{% include [functions](./_includes/functions.md) %}
\ No newline at end of file |