sbdelisle commented on issue #15876:
URL: https://github.com/apache/superset/issues/15876#issuecomment-885951371


   I was able to recreate the issue querying the standard clickhouse server.
   
   I ran clickhouse from docker using `docker run -d -P --name 
some-clickhouse-server --ulimit nofile=262144:262144 yandex/clickhouse-server`
   
   Then created a database: `CREATE DATABASE IF NOT EXISTS tutorial;`
   
   Then created the simplest table I could: `create table tutorial.bignum 
(`EventTime` DateTime, `bignum` UInt64) ENGINE = MergeTree() PARTITION BY 
toYYYYMM(EventTime) ORDER BY (EventTime);`
   
   Then execed into the docker file ran `cat | clickhouse-client -mn` and 
loaded the data by pasting the attached sql.
   
[clickhouse-bignum.sql.txt](https://github.com/apache/superset/files/6871505/clickhouse-bignum.sql.txt)
   
   After connecting Superset to the clickhouse server, I got the error by 
running `SELECT * from tutorial.bignum` in sqllab. 
   
   


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

Reply via email to