docs: sql-templating (#30337)

This commit is contained in:
George A. A. Bonespírito
2024-09-19 15:09:01 -03:00
committed by GitHub
parent 186e75f9b2
commit 9b87ca9209

View File

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