Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(dbt): Test ingestion assertee urn issues [GDP-2226] #38

Merged
merged 1 commit into from
Dec 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ def get_upstreams(

materialized = upstream_manifest_node.materialization

if materialized in {"view", "table", "incremental", "snapshot"}:
if materialized in {"view", "materialized_view", "table", "incremental", "snapshot", "fc_insert_by_period"}:
# upstream urns point to the target platform
platform_value = target_platform
platform_instance_value = target_platform_instance
Expand Down Expand Up @@ -729,7 +729,7 @@ def create_test_entity_mcps(
target_platform=self.config.target_platform,
target_platform_instance=self.config.target_platform_instance,
environment=self.config.env,
platform_instance=None,
platform_instance=self.config.platform_instance,
)

for upstream_urn in sorted(upstream_urns):
Expand Down
Loading