-
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.
Merge branch 'yiming/commit-partial-table' into yiming/snapshot-backfill
- Loading branch information
Showing
37 changed files
with
525 additions
and
94 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,195 @@ | ||
statement ok | ||
SET RW_IMPLICIT_FLUSH TO true; | ||
|
||
statement ok | ||
ALTER SYSTEM SET license_key TO ''; | ||
|
||
statement ok | ||
CREATE TABLE t (k INT); | ||
|
||
statement error | ||
CREATE SINK dynamodb_sink | ||
FROM | ||
t | ||
WITH | ||
( | ||
connector = 'dynamodb', | ||
table = 'xx', | ||
primary_key = 'k', | ||
region = 'xx', | ||
access_key = 'xx', | ||
secret_key = 'xx' | ||
); | ||
---- | ||
db error: ERROR: Failed to run the query | ||
|
||
Caused by these errors (recent errors listed first): | ||
1: gRPC request to meta service failed: Internal error | ||
2: failed to validate sink | ||
3: Internal error | ||
4: feature DynamoDbSink is only available for tier Paid and above, while the current tier is Free | ||
|
||
Hint: You may want to set a license key with `ALTER SYSTEM SET license_key = '...';` command. | ||
|
||
|
||
statement error | ||
CREATE SINK snowflake_sink | ||
FROM t | ||
WITH ( | ||
connector = 'snowflake', | ||
type = 'append-only', | ||
force_append_only = 'true', | ||
s3.bucket_name = 'xx', | ||
s3.credentials.access = 'xx', | ||
s3.credentials.secret = 'xx', | ||
s3.region_name = 'xx', | ||
s3.path = 'xx', | ||
); | ||
---- | ||
db error: ERROR: Failed to run the query | ||
|
||
Caused by these errors (recent errors listed first): | ||
1: gRPC request to meta service failed: Internal error | ||
2: failed to validate sink | ||
3: Internal error | ||
4: feature SnowflakeSink is only available for tier Paid and above, while the current tier is Free | ||
|
||
Hint: You may want to set a license key with `ALTER SYSTEM SET license_key = '...';` command. | ||
|
||
|
||
statement error | ||
CREATE SINK opensearch_sink | ||
FROM t | ||
WITH ( | ||
connector = 'opensearch', | ||
url = 'xx', | ||
username = 'xx', | ||
password = 'xx', | ||
); | ||
---- | ||
db error: ERROR: Failed to run the query | ||
|
||
Caused by these errors (recent errors listed first): | ||
1: gRPC request to meta service failed: Internal error | ||
2: failed to validate sink | ||
3: feature OpenSearchSink is only available for tier Paid and above, while the current tier is Free | ||
|
||
Hint: You may want to set a license key with `ALTER SYSTEM SET license_key = '...';` command. | ||
|
||
|
||
statement error | ||
CREATE SINK bigquery_sink | ||
FROM | ||
t | ||
WITH | ||
( | ||
connector = 'bigquery', | ||
type = 'append-only', | ||
force_append_only='true', | ||
bigquery.local.path= 'xx', | ||
bigquery.project= 'xx', | ||
bigquery.dataset= 'xx', | ||
bigquery.table= 'xx' | ||
); | ||
---- | ||
db error: ERROR: Failed to run the query | ||
|
||
Caused by these errors (recent errors listed first): | ||
1: gRPC request to meta service failed: Internal error | ||
2: failed to validate sink | ||
3: Internal error | ||
4: feature BigQuerySink is only available for tier Paid and above, while the current tier is Free | ||
|
||
Hint: You may want to set a license key with `ALTER SYSTEM SET license_key = '...';` command. | ||
|
||
|
||
statement ok | ||
ALTER SYSTEM SET license_key TO DEFAULT; | ||
|
||
statement ok | ||
flush; | ||
|
||
statement error | ||
CREATE SINK dynamodb_sink | ||
FROM | ||
t | ||
WITH | ||
( | ||
connector = 'dynamodb', | ||
table = 'xx', | ||
primary_key = 'xx', | ||
region = 'xx', | ||
access_key = 'xx', | ||
secret_key = 'xx' | ||
); | ||
---- | ||
db error: ERROR: Failed to run the query | ||
|
||
Caused by these errors (recent errors listed first): | ||
1: Sink error | ||
2: Sink primary key column not found: xx. Please use ',' as the delimiter for different primary key columns. | ||
|
||
|
||
statement ok | ||
CREATE SINK snowflake_sink | ||
FROM t | ||
WITH ( | ||
connector = 'snowflake', | ||
type = 'append-only', | ||
force_append_only = 'true', | ||
s3.bucket_name = 'xx', | ||
s3.credentials.access = 'xx', | ||
s3.credentials.secret = 'xx', | ||
s3.region_name = 'xx', | ||
s3.path = 'xx', | ||
); | ||
|
||
|
||
statement error | ||
CREATE SINK opensearch_sink | ||
FROM t | ||
WITH ( | ||
connector = 'opensearch', | ||
url = 'xx', | ||
username = 'xx', | ||
password = 'xx', | ||
index = 'xx', | ||
); | ||
---- | ||
db error: ERROR: Failed to run the query | ||
|
||
Caused by these errors (recent errors listed first): | ||
1: gRPC request to meta service failed: Internal error | ||
2: failed to validate sink | ||
3: sink cannot pass validation: INTERNAL: Connection is closed | ||
|
||
|
||
statement error | ||
CREATE SINK bigquery_sink | ||
FROM | ||
t | ||
WITH | ||
( | ||
connector = 'bigquery', | ||
type = 'append-only', | ||
force_append_only='true', | ||
bigquery.local.path= 'xx', | ||
bigquery.project= 'xx', | ||
bigquery.dataset= 'xx', | ||
bigquery.table= 'xx' | ||
); | ||
---- | ||
db error: ERROR: Failed to run the query | ||
|
||
Caused by these errors (recent errors listed first): | ||
1: gRPC request to meta service failed: Internal error | ||
2: failed to validate sink | ||
3: BigQuery error | ||
4: No such file or directory (os error 2) | ||
|
||
|
||
statement ok | ||
DROP SINK snowflake_sink; | ||
|
||
statement ok | ||
DROP TABLE t; |
80 changes: 80 additions & 0 deletions
80
e2e_test/streaming/aggregate/two_phase_approx_percentile_merge_stateful_agg.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
# Single phase approx percentile | ||
statement ok | ||
create table t(p_col double, grp_col int); | ||
|
||
statement ok | ||
insert into t select a, 1 from generate_series(-1000, 1000) t(a); | ||
|
||
statement ok | ||
flush; | ||
|
||
query I | ||
select | ||
percentile_cont(0.01) within group (order by p_col) as p01, | ||
min(p_col), | ||
percentile_cont(0.5) within group (order by p_col) as p50, | ||
count(*), | ||
percentile_cont(0.99) within group (order by p_col) as p99 | ||
from t; | ||
---- | ||
-980 -1000 0 2001 980 | ||
|
||
statement ok | ||
create materialized view m1 as | ||
select | ||
approx_percentile(0.01, 0.01) within group (order by p_col) as p01, | ||
min(p_col), | ||
approx_percentile(0.5, 0.01) within group (order by p_col) as p50, | ||
count(*), | ||
approx_percentile(0.99, 0.01) within group (order by p_col) as p99 | ||
from t; | ||
|
||
query I | ||
select * from m1; | ||
---- | ||
-982.5779489474152 -1000 0 2001 982.5779489474152 | ||
|
||
# Test state encode / decode | ||
onlyif can-use-recover | ||
statement ok | ||
recover; | ||
|
||
onlyif can-use-recover | ||
sleep 10s | ||
|
||
query I | ||
select * from m1; | ||
---- | ||
-982.5779489474152 -1000 0 2001 982.5779489474152 | ||
|
||
# Test 0<x<1 values | ||
statement ok | ||
insert into t select 0.001, 1 from generate_series(1, 500); | ||
|
||
statement ok | ||
insert into t select 0.0001, 1 from generate_series(1, 501); | ||
|
||
statement ok | ||
flush; | ||
|
||
query I | ||
select * from m1; | ||
---- | ||
-963.1209598593477 -1000 0.00009999833511933609 3002 963.1209598593477 | ||
|
||
query I | ||
select | ||
percentile_cont(0.01) within group (order by p_col) as p01, | ||
min(p_col), | ||
percentile_cont(0.5) within group (order by p_col) as p50, | ||
count(*), | ||
percentile_cont(0.99) within group (order by p_col) as p99 | ||
from t; | ||
---- | ||
-969.99 -1000 0.0001 3002 969.9899999999998 | ||
|
||
statement ok | ||
drop materialized view m1; | ||
|
||
statement ok | ||
drop table t; |
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
Oops, something went wrong.