Extra semicolon removed from the TTL example

This PR removes an extra semicolon from the TTL example.
This commit is contained in:
Nityananda Gohain 2022-08-03 12:52:06 +05:30 committed by GitHub
parent 80d2685ab7
commit 0b82fb7816
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,7 @@ CREATE TABLE table_with_ttl
)
ENGINE MergeTree()
ORDER BY tuple()
TTL event_time + INTERVAL 3 MONTH;
TTL event_time + INTERVAL 3 MONTH
SETTINGS min_bytes_for_wide_part = 0;
INSERT INTO table_with_ttl VALUES (now(), 1, 'username1');