-
Notifications
You must be signed in to change notification settings - Fork 753
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(query): cume_dist() always return unbounded frame (#16242)
* fix(query): cume_dist() always return unbounded frame * fix test
- Loading branch information
Showing
5 changed files
with
95 additions
and
70 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
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
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
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
18 changes: 18 additions & 0 deletions
18
tests/sqllogictests/suites/query/window_function/window_wisconsin_block_size_1.test
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,18 @@ | ||
statement ok | ||
set max_block_size = 1; | ||
|
||
include ./expr_in_window.test | ||
include ./named_window_basic.test | ||
include ./window_basic.test | ||
include ./window_bound.test | ||
include ./window_ignore_nulls.test | ||
include ./window_in_expr.test | ||
include ./window_ntile.test | ||
include ./window_partition_spill.test | ||
include ./window_qualify.test | ||
include ./window_range.test | ||
include ./window_subquery.test | ||
include ./window_wisconsin.test | ||
|
||
statement ok | ||
unset global max_block_size; |