This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v2-6-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit cd210181ee19ff02052a409eaf9b4e5098bbc143 Author: Mats Holm <[email protected]> AuthorDate: Wed Jul 5 18:39:37 2023 +0200 Update pipeline.rst (#32369) Typo in final dag, merge_data. (cherry picked from commit 383efbcbe00a0ce25251ba3a06a625f0ae40d806) --- docs/apache-airflow/tutorial/pipeline.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/apache-airflow/tutorial/pipeline.rst b/docs/apache-airflow/tutorial/pipeline.rst index c9bfcfa601..fca2418a70 100644 --- a/docs/apache-airflow/tutorial/pipeline.rst +++ b/docs/apache-airflow/tutorial/pipeline.rst @@ -288,7 +288,10 @@ Putting all of the pieces together, we have our completed DAG. FROM employees_temp ) t ON CONFLICT ("Serial Number") DO UPDATE - SET "Serial Number" = excluded."Serial Number"; + SET + "Employee Markme" = excluded."Employee Markme", + "Description" = excluded."Description", + "Leave" = excluded."Leave"; """ try: postgres_hook = PostgresHook(postgres_conn_id="tutorial_pg_conn")
