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