rawwar commented on code in PR #44333:
URL: https://github.com/apache/airflow/pull/44333#discussion_r1857904627
##########
airflow/models/dagrun.py:
##########
@@ -141,7 +142,7 @@ class DagRun(Base, LoggingMixin):
triggered_by = Column(
Enum(DagRunTriggeredByType, native_enum=False, length=50)
) # Airflow component that triggered the run.
- conf = Column(PickleType)
+ conf = Column(JSON().with_variant(postgresql.JSONB, "postgresql"))
Review Comment:
Yeah. I checked how this works. Looks like, only for postgres, this setting
will be applied. Not for other databases. I also copied this from
https://github.com/apache/airflow/pull/44290
--
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]