-
Notifications
You must be signed in to change notification settings - Fork 591
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: run over window e2e test in all cache policy modes (#13951)
Signed-off-by: Richard Chien <[email protected]>
- Loading branch information
Showing
6 changed files
with
94 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,27 @@ | ||
# This file is generated by `gen.py`. Do not edit it manually! | ||
|
||
statement ok | ||
SET RW_IMPLICIT_FLUSH TO true; | ||
|
||
include ./basic/mod.slt.part | ||
include ./rank_func/mod.slt.part | ||
include ./expr_in_win_func/mod.slt.part | ||
include ./agg_in_win_func/mod.slt.part | ||
include ./opt_agg_then_join/mod.slt.part | ||
include ./with_filter/mod.slt.part | ||
set rw_implicit_flush = true; | ||
|
||
statement ok | ||
set rw_streaming_over_window_cache_policy = full; | ||
|
||
include ./run_all.slt.part | ||
|
||
statement ok | ||
set rw_streaming_over_window_cache_policy = recent; | ||
|
||
include ./run_all.slt.part | ||
|
||
statement ok | ||
set rw_streaming_over_window_cache_policy = recent_first_n; | ||
|
||
include ./run_all.slt.part | ||
|
||
statement ok | ||
set rw_streaming_over_window_cache_policy = recent_last_n; | ||
|
||
include ./run_all.slt.part | ||
|
||
statement ok | ||
set rw_streaming_over_window_cache_policy = default; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# This file is generated by `gen.py`. Do not edit it manually! | ||
|
||
include ./basic/mod.slt.part | ||
include ./rank_func/mod.slt.part | ||
include ./expr_in_win_func/mod.slt.part | ||
include ./agg_in_win_func/mod.slt.part | ||
include ./opt_agg_then_join/mod.slt.part | ||
include ./with_filter/mod.slt.part |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,27 @@ | ||
# This file is generated by `gen.py`. Do not edit it manually! | ||
|
||
statement ok | ||
SET RW_IMPLICIT_FLUSH TO true; | ||
|
||
include ./basic/mod.slt.part | ||
include ./rank_func/mod.slt.part | ||
include ./expr_in_win_func/mod.slt.part | ||
include ./agg_in_win_func/mod.slt.part | ||
include ./opt_agg_then_join/mod.slt.part | ||
include ./with_filter/mod.slt.part | ||
set rw_implicit_flush = true; | ||
|
||
statement ok | ||
set rw_streaming_over_window_cache_policy = full; | ||
|
||
include ./run_all.slt.part | ||
|
||
statement ok | ||
set rw_streaming_over_window_cache_policy = recent; | ||
|
||
include ./run_all.slt.part | ||
|
||
statement ok | ||
set rw_streaming_over_window_cache_policy = recent_first_n; | ||
|
||
include ./run_all.slt.part | ||
|
||
statement ok | ||
set rw_streaming_over_window_cache_policy = recent_last_n; | ||
|
||
include ./run_all.slt.part | ||
|
||
statement ok | ||
set rw_streaming_over_window_cache_policy = default; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# This file is generated by `gen.py`. Do not edit it manually! | ||
|
||
include ./basic/mod.slt.part | ||
include ./rank_func/mod.slt.part | ||
include ./expr_in_win_func/mod.slt.part | ||
include ./agg_in_win_func/mod.slt.part | ||
include ./opt_agg_then_join/mod.slt.part | ||
include ./with_filter/mod.slt.part |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,25 @@ | ||
statement ok | ||
SET RW_IMPLICIT_FLUSH TO true; | ||
|
||
include ./basic/mod.slt.part | ||
include ./rank_func/mod.slt.part | ||
include ./expr_in_win_func/mod.slt.part | ||
include ./agg_in_win_func/mod.slt.part | ||
include ./opt_agg_then_join/mod.slt.part | ||
include ./with_filter/mod.slt.part | ||
set rw_implicit_flush = true; | ||
|
||
statement ok | ||
set rw_streaming_over_window_cache_policy = full; | ||
|
||
include ./run_all.slt.part | ||
|
||
statement ok | ||
set rw_streaming_over_window_cache_policy = recent; | ||
|
||
include ./run_all.slt.part | ||
|
||
statement ok | ||
set rw_streaming_over_window_cache_policy = recent_first_n; | ||
|
||
include ./run_all.slt.part | ||
|
||
statement ok | ||
set rw_streaming_over_window_cache_policy = recent_last_n; | ||
|
||
include ./run_all.slt.part | ||
|
||
statement ok | ||
set rw_streaming_over_window_cache_policy = default; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
include ./basic/mod.slt.part | ||
include ./rank_func/mod.slt.part | ||
include ./expr_in_win_func/mod.slt.part | ||
include ./agg_in_win_func/mod.slt.part | ||
include ./opt_agg_then_join/mod.slt.part | ||
include ./with_filter/mod.slt.part |