Merge pull request #16607 from ClickHouse/fix_idiotic_test

Fix stupid error in test with TTL
This commit is contained in:
alesapin 2020-11-02 18:56:00 +03:00 committed by GitHub
commit ebd065c7e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,7 +28,7 @@ TTL column_comment + INTERVAL 2 MONTH;
SHOW CREATE TABLE r_prop_table1;
SHOW CREATE TABLE r_prop_table2;
INSERT INTO r_prop_table1 (column_codec, column_comment, column_ttl) VALUES ('str', toDate('2020-10-01'), 1);
INSERT INTO r_prop_table1 (column_codec, column_comment, column_ttl) VALUES ('str', toDate('2100-01-01'), 1);
SYSTEM SYNC REPLICA r_prop_table2;