-
Notifications
You must be signed in to change notification settings - Fork 594
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: bump sqllogictest & fix backwards-compat-test/e2e-tests (#14354)
- Loading branch information
Showing
15 changed files
with
197 additions
and
17 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
File renamed without changes.
8 changes: 8 additions & 0 deletions
8
backwards-compat-tests/slt/nexmark-backwards-compat/validate_restart.slt
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
File renamed without changes.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,8 +48,8 @@ ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse | |
RUN curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash | ||
RUN cargo binstall -y --no-symlinks cargo-llvm-cov cargo-nextest cargo-hakari cargo-sort cargo-cache cargo-audit \ | ||
[email protected] \ | ||
sqllogictest-bin@0.18.0 \ | ||
&& cargo install sccache \ | ||
sqllogictest-bin@0.19.1 \ | ||
sccache@0.7.4 \ | ||
&& cargo cache -a \ | ||
&& rm -rf "/root/.cargo/registry/index" \ | ||
&& rm -rf "/root/.cargo/registry/cache" \ | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
include ./aggregate/*.slt.part | ||
include ./aggregate/*/*.slt.part | ||
include ./join/*.slt.part | ||
include ./join/*/*.slt.part | ||
include ./conjunction/*.slt.part | ||
include ./conjunction/*/*.slt.part | ||
include ./aggregate/**/*.slt.part | ||
include ./join/**/*.slt.part | ||
include ./conjunction/**/*.slt.part | ||
include ./limit/*.slt.part | ||
include ./select/*.slt.part | ||
include ./cte/*.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
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
84 changes: 84 additions & 0 deletions
84
e2e_test/over_window/generated/batch/rank_func/row_number_old.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 |
---|---|---|
@@ -0,0 +1,84 @@ | ||
# This file is generated by `gen.py`. Do not edit it manually! | ||
|
||
statement ok | ||
create table t ( | ||
id int | ||
, p1 int | ||
, p2 int | ||
, time int | ||
, v1 int | ||
, v2 int | ||
); | ||
|
||
statement ok | ||
create view v as | ||
select | ||
* | ||
, row_number() over (partition by p1 order by time, id) as out1 | ||
, row_number() over (partition by p1 order by p2 desc, id) as out2 | ||
from t; | ||
|
||
statement ok | ||
insert into t values | ||
(100001, 100, 200, 1, 701, 805) | ||
, (100002, 100, 200, 2, 700, 806) | ||
, (100003, 100, 208, 2, 723, 807) | ||
, (100004, 103, 200, 2, 702, 808); | ||
|
||
query II | ||
select * from v order by id; | ||
---- | ||
100001 100 200 1 701 805 1 2 | ||
100002 100 200 2 700 806 2 3 | ||
100003 100 208 2 723 807 3 1 | ||
100004 103 200 2 702 808 1 1 | ||
|
||
statement ok | ||
insert into t values | ||
(100005, 100, 200, 3, 717, 810) | ||
, (100006, 105, 204, 5, 703, 828); | ||
|
||
query II | ||
select * from v order by id; | ||
---- | ||
100001 100 200 1 701 805 1 2 | ||
100002 100 200 2 700 806 2 3 | ||
100003 100 208 2 723 807 3 1 | ||
100004 103 200 2 702 808 1 1 | ||
100005 100 200 3 717 810 4 4 | ||
100006 105 204 5 703 828 1 1 | ||
|
||
statement ok | ||
update t set v1 = 799 where id = 100002; -- value change | ||
|
||
statement ok | ||
update t set p2 = 200 where id = 100003; -- partition change | ||
|
||
statement ok | ||
update t set "time" = 1 where id = 100005; -- order change | ||
|
||
query iiiiiii | ||
select * from v order by id; | ||
---- | ||
100001 100 200 1 701 805 1 1 | ||
100002 100 200 2 799 806 3 2 | ||
100003 100 200 2 723 807 4 3 | ||
100004 103 200 2 702 808 1 1 | ||
100005 100 200 1 717 810 2 4 | ||
100006 105 204 5 703 828 1 1 | ||
|
||
statement ok | ||
delete from t where time = 2; | ||
|
||
query iiiiiii | ||
select * from v order by id; | ||
---- | ||
100001 100 200 1 701 805 1 1 | ||
100005 100 200 1 717 810 2 2 | ||
100006 105 204 5 703 828 1 1 | ||
|
||
statement ok | ||
drop view v; | ||
|
||
statement ok | ||
drop table t; |
84 changes: 84 additions & 0 deletions
84
e2e_test/over_window/generated/streaming/rank_func/row_number_old.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 |
---|---|---|
@@ -0,0 +1,84 @@ | ||
# This file is generated by `gen.py`. Do not edit it manually! | ||
|
||
statement ok | ||
create table t ( | ||
id int | ||
, p1 int | ||
, p2 int | ||
, time int | ||
, v1 int | ||
, v2 int | ||
); | ||
|
||
statement ok | ||
create materialized view v as | ||
select | ||
* | ||
, row_number() over (partition by p1 order by time, id) as out1 | ||
, row_number() over (partition by p1 order by p2 desc, id) as out2 | ||
from t; | ||
|
||
statement ok | ||
insert into t values | ||
(100001, 100, 200, 1, 701, 805) | ||
, (100002, 100, 200, 2, 700, 806) | ||
, (100003, 100, 208, 2, 723, 807) | ||
, (100004, 103, 200, 2, 702, 808); | ||
|
||
query II | ||
select * from v order by id; | ||
---- | ||
100001 100 200 1 701 805 1 2 | ||
100002 100 200 2 700 806 2 3 | ||
100003 100 208 2 723 807 3 1 | ||
100004 103 200 2 702 808 1 1 | ||
|
||
statement ok | ||
insert into t values | ||
(100005, 100, 200, 3, 717, 810) | ||
, (100006, 105, 204, 5, 703, 828); | ||
|
||
query II | ||
select * from v order by id; | ||
---- | ||
100001 100 200 1 701 805 1 2 | ||
100002 100 200 2 700 806 2 3 | ||
100003 100 208 2 723 807 3 1 | ||
100004 103 200 2 702 808 1 1 | ||
100005 100 200 3 717 810 4 4 | ||
100006 105 204 5 703 828 1 1 | ||
|
||
statement ok | ||
update t set v1 = 799 where id = 100002; -- value change | ||
|
||
statement ok | ||
update t set p2 = 200 where id = 100003; -- partition change | ||
|
||
statement ok | ||
update t set "time" = 1 where id = 100005; -- order change | ||
|
||
query iiiiiii | ||
select * from v order by id; | ||
---- | ||
100001 100 200 1 701 805 1 1 | ||
100002 100 200 2 799 806 3 2 | ||
100003 100 200 2 723 807 4 3 | ||
100004 103 200 2 702 808 1 1 | ||
100005 100 200 1 717 810 2 4 | ||
100006 105 204 5 703 828 1 1 | ||
|
||
statement ok | ||
delete from t where time = 2; | ||
|
||
query iiiiiii | ||
select * from v order by id; | ||
---- | ||
100001 100 200 1 701 805 1 1 | ||
100005 100 200 1 717 810 2 2 | ||
100006 105 204 5 703 828 1 1 | ||
|
||
statement ok | ||
drop materialized view v; | ||
|
||
statement ok | ||
drop table t; |
File renamed without changes.