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 2020/12/24 11:39:54 UTC

[GitHub] [airflow] potiuk commented on a change in pull request #13278: fix dag run type enum query for mysqldb driver

potiuk commented on a change in pull request #13278:
URL: https://github.com/apache/airflow/pull/13278#discussion_r548504008



##########
File path: airflow/utils/types.py
##########
@@ -16,8 +16,31 @@
 # under the License.
 import enum
 
+from sqlalchemy.types import TypeDecorator, String
 
-class DagRunType(str, enum.Enum):
+
+class EnumString(TypeDecorator):
+    """
+    Declare db column with this type to make the column compatible with string
+    and string based enum values when building the sqlalchemy ORM query. It can
+    be used just like sqlalchemy.types.String, for example:
+
+    ```
+    class Table(Base):
+        __tablename__ = "t"
+        run_type = Column(EnumString(50), nullable=False)
+    ```
+    """
+    impl = String
+
+    def process_bind_param(self, value, dialect):
+        if isinstance(value, enum.Enum):
+            return value.value
+        else:
+            return value
+
+
+class DagRunType(enum.Enum):

Review comment:
       Is there any reason why we do not want to use SqlAlchemy Enum Type? https://docs.sqlalchemy.org/en/13/core/type_basics.html#sqlalchemy.types.Enum 
   
   I believe it will map everything correctly in all dialects




----------------------------------------------------------------
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.

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