igor-tk opened a new issue #11639:
URL: https://github.com/apache/incubator-superset/issues/11639
I have a data table with a field that contains data with double quoted text
at the end:
```
some text "another text"
```
The last double quote is dropped in generated SQL when I use this field in a
filter.
### Actual results
```
WHERE org_name IN ('some text "another text')
```
### Expected results
```
WHERE org_name IN ('some text "another text"')
```
#### How to reproduce the bug
1. Create dataset with data as above
2. Create chart
3. Create filter
4. Create dashboard
5. Use filter in dashboard
6. See chart is empty.
7. Explore chart. View chart SQL code in SQL Lab
### Environment
- DB - PostgreSQL 10
- superset version: `0.37.2`
- python version: `3.6`
----------------------------------------------------------------
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]