sfirke commented on issue #20961:
URL: https://github.com/apache/superset/issues/20961#issuecomment-1204322700

   I was able to reproduce this with the example data set `flights`.  Here's 
the dashboard with the filters in errored state:
   
![image](https://user-images.githubusercontent.com/7569808/182680915-499946dd-6bea-4da8-bf94-516ad72c3113.png)
   
   When I click View Query I see the persisted filters on Query B did not 
release when I un-checked them:
   **Query A**
   ```
   SELECT "DAY" AS "DAY",
          "STATE" AS "STATE",
          COUNT(*) AS count
   FROM public.flights
   WHERE "STATE" IN ('CA',
                     'IL',
                     'NY')
   GROUP BY "DAY",
            "STATE"
   ORDER BY count DESC
   LIMIT 10000;
   ```
   
   **Query B**
   ```
   SELECT "DAY" AS "DAY",
          COUNT(*) AS count
   FROM public.flights
   WHERE "STATE" IN ('CA',
                     'IL',
                     'NY')
     AND "AIRLINE" IN ('EV')
     AND "COUNTRY_DEST" IN ('USA')
   GROUP BY "DAY"
   ORDER BY count DESC
   LIMIT 10000;
   ```
   


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