Skip to content

Commit

Permalink
Merge pull request #59612 from ClickHouse/docs-temporary-tables-cloud
Browse files Browse the repository at this point in the history
[Docs] Add detail on using temporary tables in Cloud
  • Loading branch information
robot-ch-test-poll committed Feb 13, 2024
2 parents 31c5f1e + b68bc3d commit 773baca
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docs/en/sql-reference/statements/create/table.md
Expand Up @@ -514,6 +514,10 @@ ENGINE = MergeTree ORDER BY x;

## Temporary Tables

:::note
Please note that temporary tables are not replicated. As a result, there is no guarantee that data inserted into a temporary table will be available in other replicas. The primary use case where temporary tables can be useful is for querying or joining small external datasets during a single session.
:::

ClickHouse supports temporary tables which have the following characteristics:

- Temporary tables disappear when the session ends, including if the connection is lost.
Expand Down

0 comments on commit 773baca

Please sign in to comment.