mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
Update settings.md
This commit is contained in:
parent
33a7180417
commit
8e49da6fce
@ -1759,14 +1759,14 @@ ENGINE = MergeTree
|
||||
ORDER BY A
|
||||
SETTINGS non_replicated_deduplication_window = 100;
|
||||
|
||||
INSERT INTO test_table FORMAT Values SETTINGS insert_deduplication_token = 'test' (1);
|
||||
INSERT INTO test_table Values SETTINGS insert_deduplication_token = 'test' (1);
|
||||
|
||||
-- следующая вставка не будет дедуплицирована, потому что insert_dedupplication_token отличается
|
||||
INSERT INTO test_table FORMAT Values SETTINGS insert_deduplication_token = 'test1' (1);
|
||||
INSERT INTO test_table Values SETTINGS insert_deduplication_token = 'test1' (1);
|
||||
|
||||
-- следующая вставка будет дедуплицирована, потому что insert_dedupplication_token
|
||||
-- тот же самый, что и один из предыдущих
|
||||
INSERT INTO test_table FORMAT Values SETTINGS insert_deduplication_token = 'test' (2);
|
||||
INSERT INTO test_table Values SETTINGS insert_deduplication_token = 'test' (2);
|
||||
|
||||
SELECT * FROM test_table
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user