You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@superset.apache.org by GitBox <gi...@apache.org> on 2021/10/12 09:33:47 UTC

[GitHub] [superset] linyuchen commented on issue #14864: superset upload csv to clickhosue

linyuchen commented on issue #14864:
URL: https://github.com/apache/superset/issues/14864#issuecomment-940837727


   Clickhouse create table must set a engine. But the clickhouse_sqlalchemy/drivers/base.py not set a default engine.
   
   ```python
       def post_create_table(self, table):
           engine = getattr(table, 'engine', engines.Memory())
           return ' ENGINE = ' + self.process(engine)
   ```
   
   It works.
   


-- 
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: notifications-unsubscribe@superset.apache.org

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



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org
For additional commands, e-mail: notifications-help@superset.apache.org