Update 01867_support_datetime64_version_column.sql

This commit is contained in:
alexey-milovidov 2021-05-11 15:29:37 +03:00 committed by GitHub
parent 04f00b2b42
commit 3bb480bd37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,3 +1,4 @@
drop table if exists replacing;
create table replacing( `A` Int64, `D` DateTime64(9), `S` String) ENGINE = ReplacingMergeTree(D) ORDER BY A;
insert into replacing values (1,'1970-01-01 08:25:46.300800000','a');
@ -12,4 +13,4 @@ OPTIMIZE TABLE replacing;
select * from replacing;
drop table replacing;
drop table replacing;