Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(test): temporal join watermark test select eowc skipif in-memory and inc sleep time #12581

Merged
merged 1 commit into from
Sep 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions e2e_test/streaming/temporal_join/temporal_join_watermark.slt
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,23 @@ select * from temporal_join_mv;
----
1 1 NULL 2023-09-14 06:00:00+00:00

skipif in-memory
query IIII rowsort
select * from eowc_mv;
----

statement ok
insert into stream values (2, 2, 2, '2023-09-14 06:00:25');

sleep 5s
sleep 10s

query IIII rowsort
select * from temporal_join_mv;
----
1 1 NULL 2023-09-14 06:00:00+00:00
2 2 NULL 2023-09-14 06:00:25+00:00


skipif in-memory
query IIII rowsort
select * from eowc_mv;
----
Expand All @@ -46,7 +47,7 @@ select * from eowc_mv;
statement ok
insert into stream values (3, 3, 3, '2023-09-14 06:00:45');

sleep 5s
sleep 10s

query IIII rowsort
select * from temporal_join_mv;
Expand All @@ -55,6 +56,7 @@ select * from temporal_join_mv;
2 2 NULL 2023-09-14 06:00:25+00:00
3 3 NULL 2023-09-14 06:00:45+00:00

skipif in-memory
query IIII rowsort
select * from eowc_mv;
----
Expand Down
Loading