Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
shnikd committed Mar 25, 2024
1 parent d1e21ca commit 7ad795e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 15 deletions.
7 changes: 0 additions & 7 deletions ydb/docs/en/core/postgresql/statements/create_table.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,6 @@ In this example, we created the "people" table with a constraint block (`CONSTRA

## Creating a temporary table {#create_table_temp_table}


{% note warning %}

The temporary table functionality is not fully implemented. Temporary tables may not be deleted. Therefore, they can be used for testing, but not for production.

{% endnote %}

{% include [create_table_temp.md](../../../_includes/postgresql/statements/create_table/create_table_temp.md) %}

The temporary table is defined using the `TEMPORARY` or `TEMP` keywords. It exists until the end of the session, after which it is automatically deleted.
Expand Down
8 changes: 0 additions & 8 deletions ydb/docs/ru/core/postgresql/statements/create_table.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,6 @@ CREATE TABLE people (

## Создание временной таблицы {#create_table_temp_table}


{% note warning %}

Функциональность временной таблицы реализована не полностью.

{% endnote %}


```sql
CREATE TEMPORARY TABLE people (
id serial PRIMARY KEY,
Expand Down

0 comments on commit 7ad795e

Please sign in to comment.