mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 16:42:05 +00:00
up doc
This commit is contained in:
parent
2b34c12e8d
commit
e4c3887e9e
@ -5627,6 +5627,29 @@ Disable all insert and mutations (alter table update / alter table delete / alte
|
|||||||
|
|
||||||
Default value: `false`.
|
Default value: `false`.
|
||||||
|
|
||||||
|
## allow_experimental_drop_detached_table {#allow_experimental_drop_detached_table}
|
||||||
|
|
||||||
|
Allows drop detached table.
|
||||||
|
|
||||||
|
Possible values:
|
||||||
|
|
||||||
|
- 0 — Disabled.
|
||||||
|
- 1 — Enabled.
|
||||||
|
|
||||||
|
Default value: `0`.
|
||||||
|
|
||||||
|
**Example**
|
||||||
|
|
||||||
|
Query:
|
||||||
|
|
||||||
|
```sql
|
||||||
|
SET allow_experimental_drop_detached_table=1;
|
||||||
|
CREATE TABLE test_table (number UInt64) ENGINE=MergeTree ORDER BY number;
|
||||||
|
INSERT INTO test_table SELECT number FROM system.numbers LIMIT 6;
|
||||||
|
DETACH TABLE test_table;
|
||||||
|
DROP DETACHED TABLE test_table SYNC;
|
||||||
|
```
|
||||||
|
|
||||||
## allow_experimental_time_series_table {#allow-experimental-time-series-table}
|
## allow_experimental_time_series_table {#allow-experimental-time-series-table}
|
||||||
|
|
||||||
Allows creation of tables with the [TimeSeries](../../engines/table-engines/integrations/time-series.md) table engine.
|
Allows creation of tables with the [TimeSeries](../../engines/table-engines/integrations/time-series.md) table engine.
|
||||||
|
Loading…
Reference in New Issue
Block a user