ealtuna edited a comment on issue #10136: URL: https://github.com/apache/incubator-superset/issues/10136#issuecomment-647754893
> This sounds like a problem from a while ago, but it has been fixed a few months ago (both in the driver and Superset). What versions of Superset and `sqlalchemy-dremio` are you on? This is my Dockerfile ``` FROM preset/superset:latest USER root RUN apt-get update -y && apt-get install -y alien RUN wget https://download.dremio.com/odbc-driver/1.4.2.1003/dremio-odbc-1.4.2.1003-1.x86_64.rpm -P /tmp/ RUN alien -k -i /tmp/dremio-odbc-1.4.2.1003-1.x86_64.rpm --scripts RUN apt-get install -y unixodbc-bin && apt-get install -y unixodbc-dev RUN pip install pyodbc && pip install sqlalchemy_dremio && pip install dremio_client[full] USER superset ``` It's using Superset from master branch (pointing to the commit e3013ea1299f13f713af34a338a74c3164be6e31 of 06/16/2020) and the latest version of the sqlalchemy-dremio. ---------------------------------------------------------------- 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]
