Skip to content

Commit 5b71de2

Browse files
authored
[docs] fixes for internal build (#7100)
1 parent 7d17776 commit 5b71de2

File tree

6 files changed

+12
-8
lines changed

6 files changed

+12
-8
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
{% if backend_name == "YDB" %}
1+
{% if oss == "true" and backend_name == "YDB" %}
22

33
{% note alert %}
44

55
{% include [not_allow_for_olap_text](not_allow_for_olap_text.md) %}
66

77
{% endnote %}
88

9-
{% endif %}
9+
{% endif %}
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
{% if oss %}
2+
13
Доступные способы загрузки данных в колоночные таблицы:
24
* [YDB CLI](../reference/ydb-cli/export-import/import-file.md)
35
* [Пакетная вставка данных](../recipes/ydb-sdk/bulk-upsert.md)
46
* [FluentBit](../integrations/fluent-bit.md)
5-
* [Yandex Data Transfer](https://yandex.cloud/ru/services/data-transfer)
7+
* [Yandex Data Transfer](https://yandex.cloud/ru/services/data-transfer)
8+
9+
{% endif %}

ydb/docs/ru/core/yql/reference/yql-core/syntax/_includes/insert_into.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# INSERT INTO
22

3-
{% if backend_name == "YDB" %}
3+
{% if oss == "true" and backend_name == "YDB" %}
44

55
{% note warning %}
66

ydb/docs/ru/core/yql/reference/yql-core/syntax/_includes/select/sample.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# TABLESAMPLE и SAMPLE
22

3-
{% if backend_name == "YDB" %}
3+
{% if oss == "true" and backend_name == "YDB" %}
44

55
{% include [olap_warning_note](../../../../../_includes/not_allow_for_olap_note.md) %}
66

ydb/docs/ru/core/yql/reference/yql-core/syntax/_includes/select/secondary_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# VIEW (INDEX)
22

3-
{% if backend_name == "YDB" %}
3+
{% if oss == "true" and backend_name == "YDB" %}
44

55
{% include [olap_warning_note](../../../../../_includes/not_allow_for_olap_note.md) %}
66

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Объединение результатов подзапросов (UNION)
22

3-
{% if backend_name == "YDB" %}
3+
{% if oss == "true" and backend_name == "YDB" %}
44

55
{% include [olap_warning_note](../../../../_includes/not_allow_for_olap_note.md) %}
66

77
{% endif %}
88

99
{% include [union](../_includes/select/union.md) %}
1010

11-
{% include [union](../_includes/select/union_all.md) %}
11+
{% include [union](../_includes/select/union_all.md) %}

0 commit comments

Comments
 (0)