Skip to content

Commit 779aede

Browse files
test extra after upload
1 parent 43a70d7 commit 779aede

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/compatibility_test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ jobs:
4646
cd $GITHUB_WORKSPACE
4747
tar -zcvf $PROTON_VERSION.tar.gz data
4848
aws s3 cp --no-progress $PROTON_VERSION.tar.gz s3://tp-internal/proton/compatibility/oss/$ARCH/
49+
50+
timeout --foreground 10m bash test_compatibility/extra_tests.sh
4951
steps:
5052
- name: display command
5153
run: |

tests/stream/test_compatibility/extra_tests.sql

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ select (* except _tp_time) from table(test_1_mv);
66
select (* except _tp_time) from test_1_mv where _tp_time > earliest_ts() limit 9;
77

88
select 'test 2';
9-
insert into test_2_s(* except _tp_time) values (0, 6.1);
9+
select (* except _tp_time) from table(test_2_mv);
10+
select (* except _tp_time) from test_2_mv where _tp_time > earliest_ts() limit 1;
11+
insert into test_2_s(* except _tp_time) values (0, 10), (1, 11), (2, 12);
1012
select (* except _tp_time) from table(test_2_mv);
1113
select (* except _tp_time) from test_2_mv where _tp_time > earliest_ts() limit 1;

0 commit comments

Comments
 (0)