diff --git a/docs/en/sql-reference/statements/create/view.md b/docs/en/sql-reference/statements/create/view.md index c36dc6a6f36b224327e67c0f3f73974bf6657c8b..7923fa1f8e176b4a8d7752d47d1275d5be48c6f0 100644 --- a/docs/en/sql-reference/statements/create/view.md +++ b/docs/en/sql-reference/statements/create/view.md @@ -163,7 +163,7 @@ SELECT * FROM [db.]live_view WHERE ... You can force live view refresh using the `ALTER LIVE VIEW [db.]table_name REFRESH` statement. -### WITH TIMEOUT {#live-view-with-timeout} +### WITH TIMEOUT Clause {#live-view-with-timeout} When a live view is created with a `WITH TIMEOUT` clause then the live view will be dropped automatically after the specified number of seconds elapse since the end of the last [WATCH](../../../sql-reference/statements/watch.md) query that was watching the live view. @@ -180,7 +180,7 @@ CREATE TABLE mt (x Int8) Engine = MergeTree ORDER BY x; CREATE LIVE VIEW lv WITH TIMEOUT 15 AS SELECT sum(x) FROM mt; ``` -### WITH REFRESH {#live-view-with-refresh} +### WITH REFRESH Clause {#live-view-with-refresh} When a live view is created with a `WITH REFRESH` clause then it will be automatically refreshed after the specified number of seconds elapse since the last refresh or trigger. diff --git a/docs/ru/operations/settings/settings.md b/docs/ru/operations/settings/settings.md index 600c3ffdd22ad5f7e27ffc3d173ecd7b3fda9901..cfeee822945763c488be13a3e2ad763990c19cf4 100644 --- a/docs/ru/operations/settings/settings.md +++ b/docs/ru/operations/settings/settings.md @@ -2564,7 +2564,7 @@ SELECT * FROM test2; ## engine_file_truncate_on_insert {#engine-file-truncate-on-insert} -Включает или выключает возможность удаления данных до вставки в таблицу на движке `File`. +Включает или выключает возможность удаления таблицы до вставки в таблицу на движке `File`. Возможные значения: - 0 — выключено.