ephraimbuddy commented on code in PR #24156:
URL: https://github.com/apache/airflow/pull/24156#discussion_r909070746
##########
airflow/models/renderedtifields.py:
##########
@@ -46,6 +46,14 @@ class RenderedTaskInstanceFields(Base):
k8s_pod_yaml = Column(sqlalchemy_jsonfield.JSONField(json=json),
nullable=True)
__table_args__ = (
+ PrimaryKeyConstraint(
+ "dag_id",
+ "task_id",
+ "run_id",
+ "map_index",
+ name='rendered_task_instance_fields_pkey',
+ mssql_clustered=True,
+ ),
Review Comment:
I did remove it before but MSSQL was failing to create the tables
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]