From eb5b5ee1f3d431a77d5ee67a9d042d7a73cb4041 Mon Sep 17 00:00:00 2001 From: Nikolay Shumkov Date: Fri, 29 Mar 2024 17:51:30 +0300 Subject: [PATCH] Fixes --- .../{temp_table_description.md => temp-table-description.md} | 0 ydb/docs/en/core/postgresql/statements/create_table.md | 2 +- .../yql/reference/yql-core/syntax/_includes/create_table.md | 2 +- .../{temp_table_description.md => temp-table-description.md} | 0 ydb/docs/ru/core/postgresql/statements/create_table.md | 2 +- .../yql/reference/yql-core/syntax/_includes/create_table.md | 2 +- 6 files changed, 4 insertions(+), 4 deletions(-) rename ydb/docs/en/core/_includes/{temp_table_description.md => temp-table-description.md} (100%) rename ydb/docs/ru/core/_includes/{temp_table_description.md => temp-table-description.md} (100%) diff --git a/ydb/docs/en/core/_includes/temp_table_description.md b/ydb/docs/en/core/_includes/temp-table-description.md similarity index 100% rename from ydb/docs/en/core/_includes/temp_table_description.md rename to ydb/docs/en/core/_includes/temp-table-description.md diff --git a/ydb/docs/en/core/postgresql/statements/create_table.md b/ydb/docs/en/core/postgresql/statements/create_table.md index a9ea7d1fbc98..eaf7b1e75a4c 100644 --- a/ydb/docs/en/core/postgresql/statements/create_table.md +++ b/ydb/docs/en/core/postgresql/statements/create_table.md @@ -11,7 +11,7 @@ The `CREATE TABLE` statement is used to create an empty table in the current dat When creating a table, you can specify: -1. **Table Type**: {% include [_includes/temp_table_description.md](../../_includes/temp_table_description.md) %} +1. **Table Type**: {% include [temp-table-description.md](../../_includes/temp-table-description.md) %} 2. **Table Name**: `` – you can use English letters in lowercase, numbers, underscores and dollar signs ($). For example, the table name "People" will be stored as "people". For more information, see [Identifiers and Key Words](https://www.postgresql.org/docs/current/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS). 3. **Column Name**: `` – the same naming rules apply as for table names. 4. **Data Type**: `` – [standard PostgreSQL data types](https://www.postgresql.org/docs/14/datatype.html) are specified. diff --git a/ydb/docs/en/core/yql/reference/yql-core/syntax/_includes/create_table.md b/ydb/docs/en/core/yql/reference/yql-core/syntax/_includes/create_table.md index 5ea92f8f3b0b..a0552ad65317 100644 --- a/ydb/docs/en/core/yql/reference/yql-core/syntax/_includes/create_table.md +++ b/ydb/docs/en/core/yql/reference/yql-core/syntax/_includes/create_table.md @@ -121,7 +121,7 @@ CREATE TEMPORARY TABLE table_name ( ); ``` -{% include [_includes/temp_table_description.md](../../../../../_includes/temp_table_description.md) %} +{% include [temp-table-description.md](../../../../../_includes/temp-table-description.md) %} {% endif %} diff --git a/ydb/docs/ru/core/_includes/temp_table_description.md b/ydb/docs/ru/core/_includes/temp-table-description.md similarity index 100% rename from ydb/docs/ru/core/_includes/temp_table_description.md rename to ydb/docs/ru/core/_includes/temp-table-description.md diff --git a/ydb/docs/ru/core/postgresql/statements/create_table.md b/ydb/docs/ru/core/postgresql/statements/create_table.md index 4d9cbf2afa84..5f3f9f7c71bb 100644 --- a/ydb/docs/ru/core/postgresql/statements/create_table.md +++ b/ydb/docs/ru/core/postgresql/statements/create_table.md @@ -15,7 +15,7 @@ CREATE [TEMPORARY | TEMP] TABLE
( ); ``` При создании таблицы можно задать: -1. **Тип таблицы**: {% include [_includes/temp_table_description.md](../../_includes/temp_table_description.md) %} +1. **Тип таблицы**: {% include [temp-table-description.md](../../_includes/temp-table-description.md) %} 2. **Имя таблицы**: `
` – можно использовать английские буквы в нижнем регистре, цифры, нижнее подчёркивание и знак доллара ($). Например, название таблицы "People" будет сохранено как "people"; 3. **Имя столбца/колонки**: – действую такие же правила нейминга как и для имен таблиц; 4. **Тип данных**: – указываются [стандартные типы](https://www.postgresql.org/docs/current/datatype.html) данных PostgreSQL; diff --git a/ydb/docs/ru/core/yql/reference/yql-core/syntax/_includes/create_table.md b/ydb/docs/ru/core/yql/reference/yql-core/syntax/_includes/create_table.md index da161f29da97..a067bbe2e14e 100644 --- a/ydb/docs/ru/core/yql/reference/yql-core/syntax/_includes/create_table.md +++ b/ydb/docs/ru/core/yql/reference/yql-core/syntax/_includes/create_table.md @@ -121,7 +121,7 @@ CREATE TEMPORARY TABLE table_name ( ... ); ``` -{% include [_includes/temp_table_description.md](../../../../../_includes/temp_table_description.md) %} +{% include [temp-table-description.md](../../../../../_includes/temp-table-description.md) %} {% endif %}