zhaoyongjie commented on a change in pull request #14547:
URL: https://github.com/apache/superset/pull/14547#discussion_r630649948



##########
File path: superset/connectors/base/models.py
##########
@@ -533,6 +533,7 @@ class BaseColumn(AuditMixinNullable, ImportExportMixin):
     def __repr__(self) -> str:
         return str(self.column_name)
 
+    bool_types = ("BOOL",)

Review comment:
       add more general column types
   ```
       bool_types = ("BOOL", "BOOLEAN", )
       num_types = ("TINYINT", )
       date_types = ("TIMESTAMP", )
       str_types = ("TEXT", "MEDIUMTEXT", "LONGTEXT", )
   ```




-- 
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:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to