We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f12d94 commit 47089bfCopy full SHA for 47089bf
forklift/forklift/pipeline/flows/sync_table_with_pandas.py
@@ -134,10 +134,11 @@ def extract_df(
134
post_processing = run_data_flow_script(
135
post_processing_script_path, upstream_tasks=[drop_final_table]
136
)
137
- drop_table_if_exists(
+ final_drop_table = drop_table_if_exists(
138
database=destination_database,
139
table=destination_table,
140
upstream_tasks=[post_processing],
141
142
143
+flow.set_reference_tasks(loaded_df, final_drop_table)
144
flow.file_name = Path(__file__).name
0 commit comments