syedbarimanjan commented on issue #33773:
URL: https://github.com/apache/superset/issues/33773#issuecomment-3016401184

   @yousoph I followed the guide but couldnt reproduce the issue it is working 
fine on my end could you provide some more info into it specifically the jinja 
template.
   
   Here is my jinja template 
   ```
   WITH calculation as (
     SELECT count(*), country
     FROM "cleaned_sales_data"
     WHERE 1=1
     {% if filter_values('product_line') %}
       and product_line in {{ filter_values('product_line')|where_in }}
     {% else %}
       and product_line = 'Classic Cars'
     {% endif %}
     GROUP BY country
   )
   SELECT * FROM calculation
   ````


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