Skip to content

Commit 595c593

Browse files
committed
Fix test
1 parent 0f89be1 commit 595c593

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

tests/queries/0_stateless/03151_redundant_distinct_with_window.reference

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
2
33
3
44
--------
5-
1 2024-05-14 00:00:00
6-
2 2024-05-14 00:00:00
7-
3 2024-05-14 00:00:00
5+
1 2023-01-14 00:00:00
6+
2 2023-01-14 00:00:00
7+
3 2023-01-14 00:00:00

tests/queries/0_stateless/03151_redundant_distinct_with_window.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ DROP TABLE IF EXISTS tab_v;
33

44
CREATE TABLE tab (id Int32, val Nullable(Float64), dt Nullable(DateTime64(6)), type Nullable(Int32)) ENGINE = MergeTree ORDER BY id;
55

6-
insert into tab values (1,10,now(),1),(2,20,now()-1,1),(3,20,now()-2,2),(4,40,now()-3,3),(5,50,now()-4,3);
6+
insert into tab values (1,10,'2023-01-14 00:00:00',1),(2,20,'2023-01-14 00:00:00',1),(3,20,'2023-01-14 00:00:00',2),(4,40,'2023-01-14 00:00:00',3),(5,50,'2023-01-14 00:00:00',3);
77

88
CREATE VIEW tab_v AS SELECT
99
t1.type AS type,

0 commit comments

Comments
 (0)