tirkarthi commented on code in PR #39032:
URL: https://github.com/apache/airflow/pull/39032#discussion_r1588767656
##########
airflow/models/dag.py:
##########
@@ -3619,7 +3619,7 @@ class DagModel(Base):
# associated zip.
fileloc = Column(String(2000))
# The base directory used by Dag Processor that parsed this dag.
- processor_subdir = Column(String(2000), nullable=True)
+ processor_subdir = Column(String(2000).with_variant(Text(length=2000),
"mysql"), nullable=True)
Review Comment:
I don't remember any specific reason for this. I guess I just copied the
`processor_subdir` as per other instances in #35956 for the model file and
migration.
```
rg 'processor_subdir = Colu' airflow/
airflow/models/db_callback_request.py
43: processor_subdir = Column(String(2000), nullable=True)
airflow/models/serialized_dag.py
86: processor_subdir = Column(String(2000), nullable=True)
airflow/models/errors.py
37: processor_subdir = Column(String(2000), nullable=True)
airflow/models/dag.py
3622: processor_subdir = Column(String(2000), nullable=True)
```
--
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]