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

vdk-plugin: fix trino scd1 query param #3402

Merged
merged 2 commits into from
Aug 5, 2024
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 @@ -65,10 +65,10 @@ def run(job_input: IJobInput):
# create staging table and insert data into staging table
create_staging_table_and_insert_data = (
create_table_and_insert_data_query.format(
table_schema=staging_schema,
table_name=staging_table,
target_schema=source_schema,
target_table=source_view,
target_schema=staging_schema,
target_table=staging_table,
source_schema=source_schema,
source_view=source_view,
)
)
job_input.execute_query(create_staging_table_and_insert_data)
Expand All @@ -84,6 +84,7 @@ def run(job_input: IJobInput):
source_view=staging_table,
)
)

job_input.execute_query(create_and_insert_into_target_table)

else:
Expand Down
Loading