Skip to content

Commit 1d46e3d

Browse files
committed
update mv name to include double "_"
Signed-off-by: YANGDB <[email protected]>
1 parent bccdc31 commit 1d46e3d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

server/adaptors/integrations/__data__/repository/aws_cloudtrail/assets/create_mv_cloud-trail-1.0.0.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CREATE MATERIALIZED VIEW {table_name}_mview AS
1+
CREATE MATERIALIZED VIEW {table_name}__mview AS
22
SELECT
33
rec.userIdentity.type AS `aws.cloudtrail.userIdentity.type`,
44
rec.userIdentity.principalId AS `aws.cloudtrail.userIdentity.principalId`,
@@ -49,6 +49,6 @@ FROM
4949
WITH (
5050
auto_refresh = true,
5151
checkpoint_location = '{s3_checkpoint_location}',
52-
watermark_delay = '1 min',
52+
watermark_delay = '1 Minute',
5353
extra_options = '{ "{table_name}": { "maxFilesPerTrigger": "10" }}'
5454
)

server/adaptors/integrations/__data__/repository/aws_vpc_flow/assets/create_mv_vpc-1.0.0.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CREATE MATERIALIZED VIEW {table_name}_mview AS
1+
CREATE MATERIALIZED VIEW {table_name}__mview AS
22
SELECT
33
CAST(FROM_UNIXTIME(start) AS TIMESTAMP) as `@timestamp`,
44
version as `aws.vpc.version`,

0 commit comments

Comments
 (0)