ktmud commented on code in PR #19421:
URL: https://github.com/apache/superset/pull/19421#discussion_r839942807
##########
superset/connectors/sqla/models.py:
##########
@@ -522,7 +524,7 @@ class SqlaTable(Model, BaseDatasource): # pylint:
disable=too-many-public-metho
foreign_keys=[database_id],
)
schema = Column(String(255))
- sql = Column(Text)
+ sql = Column(MediumText())
Review Comment:
I found out some columns need to be `MediumText` only after I noticed sql
parse was failing because some SQL statements were cut off when copying to the
new table.
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]