jacob-roldan opened a new issue, #35270: URL: https://github.com/apache/superset/issues/35270
### Bug description I have an github project with superset + pinot, where I configure the dashboard USA Births Names to use with Pinot: https://github.com/jacob-roldan/issues-superset6-pinot One error is in the chart "Girl Name Cloud PINOT" This is the query: ```sql SELECT "name", SUM(num) FROM birth_names WHERE ds1 >= '1925-09-24 00:00:00.000000' AND ds1 < '2025-09-24 17:30:50.000000' AND gender = 'girl' GROUP BY "name" LIMIT 50000; ``` Where the field _name_ is escaped, but the result is wrong: <img width="1179" height="109" alt="Image" src="https://github.com/user-attachments/assets/8b2769bd-4a9b-44d3-94b8-e9ff9dcf195f" /> That query executed with dBeaver is OK: <img width="884" height="414" alt="Image" src="https://github.com/user-attachments/assets/8b1678ad-8b83-43bf-9d19-8c324a8ea7b7" /> The step to reproduce it using that git-repo: ```sh //Start containers docker-compose up -d //Install driver for Pinot ./superset-config-pinot.sh //Load data and import dashboard ./example_birthnames.sh ``` ### Screenshots/recordings _No response_ ### Superset version master / latest-dev ### Python version 3.9 ### Node version 16 ### Browser Chrome ### Additional context With version 5.0.0, there is a problem with Pinot driver. It's not possible to configure a connection to Pinot. With version 4.1.4 all charts of USA Births Names dashboard are OK except one <img width="1912" height="1992" alt="Image" src="https://github.com/user-attachments/assets/9a3171fd-ef85-42c6-8643-12ef9d005fba" /> ### Checklist - [x] I have searched Superset docs and Slack and didn't find a solution to my problem. - [x] I have searched the GitHub issue tracker and didn't find a similar bug report. - [x] I have checked Superset's logs for errors and if I found a relevant Python stacktrace, I included it here as text in the "additional context" section. -- 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]
