You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2022/01/21 14:28:18 UTC

[GitHub] [airflow] uranusjr commented on pull request #20975: Switch XCom implementation to use run_id

uranusjr commented on pull request #20975:
URL: https://github.com/apache/airflow/pull/20975#issuecomment-1018551526


   Why is SQLite failing with
   
   ```
   sqlalchemy.exc.OperationalError: (sqlite3.OperationalError) table __airflow_tmp_xcom already exists
   [SQL:
               CREATE TABLE __airflow_tmp_xcom
               AS SELECT x.key, x.value, x.timestamp, x.task_id, x.dag_id, r.run_id
               FROM xcom AS x
               INNER JOIN dag_run AS r
               ON r.dag_id = x.dag_id
               AND r.execution_date = x.execution_date
               ]
   ```
   
   I don’t even…


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org