mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 11:22:12 +00:00
25 lines
594 B
Plaintext
25 lines
594 B
Plaintext
|
create replica 1 and check deduplication
|
||
|
two inserts with exact data, one inserted, one deduplicated by data digest
|
||
|
1 1001
|
||
|
two inserts with the same dedup token, one inserted, one deduplicated by the token
|
||
|
1 1001
|
||
|
1 1001
|
||
|
reset deduplication token and insert new row
|
||
|
1 1001
|
||
|
1 1001
|
||
|
2 1002
|
||
|
create replica 2 and check deduplication
|
||
|
inserted value deduplicated by data digest, the same result as before
|
||
|
1 1001
|
||
|
1 1001
|
||
|
2 1002
|
||
|
inserted value deduplicated by dedup token, the same result as before
|
||
|
1 1001
|
||
|
1 1001
|
||
|
2 1002
|
||
|
new record inserted by providing new deduplication token
|
||
|
1 1001
|
||
|
1 1001
|
||
|
2 1002
|
||
|
2 1002
|