This is an automated email from the ASF dual-hosted git repository.
michaelsmolina pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new 9b87ca9209 docs: sql-templating (#30337)
9b87ca9209 is described below
commit 9b87ca92097752cb411e76399b3af3cda0e5a96c
Author: George A. A. Bonespírito <[email protected]>
AuthorDate: Thu Sep 19 15:09:01 2024 -0300
docs: sql-templating (#30337)
---
docs/docs/configuration/sql-templating.mdx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/docs/configuration/sql-templating.mdx
b/docs/docs/configuration/sql-templating.mdx
index 082aacfd3e..64caea2157 100644
--- a/docs/docs/configuration/sql-templating.mdx
+++ b/docs/docs/configuration/sql-templating.mdx
@@ -94,7 +94,7 @@ There is a special ``_filters`` parameter which can be used
to test filters used
```sql
SELECT action, count(*) as times
FROM logs
-WHERE action in {{ filter_values('action_type'))|where_in }}
+WHERE action in {{ filter_values('action_type')|where_in }}
GROUP BY action
```