Update test.

This commit is contained in:
Nikolai Kochetov 2020-05-06 12:15:18 +03:00 committed by Alexey Milovidov
parent 66111a6744
commit 264599179f
2 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
0 2
0 2
0 2
1 2
0 2
1 2
0 2
1 2
the rows get inserted
2020-01-01 0 0

View File

@ -3,7 +3,7 @@ CREATE MATERIALIZED VIEW dst_mv Engine=Memory as select *, (SELECT count() FROM
insert into src_table select * from numbers(2);
insert into src_table select * from numbers(2);
insert into src_table select * from numbers(2);
select * from dst_mv;
select * from dst_mv order by number;
CREATE TABLE dest_table (`Date` Date, `Id` UInt64, `Units` Float32) ENGINE = Memory;
create table left_table as dest_table;