提交 665b6006 编写于 作者: M Mikhail

Minor

上级 fbfba863
......@@ -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.
......
......@@ -2564,7 +2564,7 @@ SELECT * FROM test2;
## engine_file_truncate_on_insert {#engine-file-truncate-on-insert}
Включает или выключает возможность удаления данных до вставки в таблицу на движке `File`.
Включает или выключает возможность удаления таблицы до вставки в таблицу на движке `File`.
Возможные значения:
- 0 — выключено.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册