This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 383efbcbe0 Update pipeline.rst (#32369)
383efbcbe0 is described below

commit 383efbcbe00a0ce25251ba3a06a625f0ae40d806
Author: Mats Holm <[email protected]>
AuthorDate: Wed Jul 5 18:39:37 2023 +0200

    Update pipeline.rst (#32369)
    
    Typo in final dag, merge_data.
---
 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")

Reply via email to