Vivek Ranjan

Results 4 comments of Vivek Ranjan

This is an issue from superset filter, it's not using the column name in group by. **DATABASE**: Oracle **SQLALCHEMY** URI: oracle+cx_oracle://myUser:XXXXXXXXXX@dev ![image](https://github.com/apache/superset/assets/127402351/247fa356-6ffb-41c2-8cd0-050ee34eb030) ![image](https://github.com/apache/superset/assets/127402351/3db2c14b-a25a-46d0-8587-3423acb9b21f) ![image](https://github.com/apache/superset/assets/127402351/6da0b37b-212d-4e6b-b859-68ff70b21b76)

That's the question why superset is doing this?

**Add the below in Dockerfile** # Install Oracle Instant Client RUN mkdir -p /opt/oracle \ && wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" https://download.oracle.com/otn_software/linux/instantclient/214000/instantclient-basic-linux.x64-21.4.0.0.0dbru.zip \ && unzip instantclient-basic-linux.x64-21.4.0.0.0dbru.zip -d /opt/oracle \...

> I'm having an issue to connect to an Oracle DB. I've already followed the steps to create a `requirements-local.txt` file into `docker/` `cx_Oracle` package, but still not working. >...