Hey, I have a query like this, will star-tree inde...
# general
n
Hey, I have a query like this, will star-tree index recognize range filter? (all date are truncated to day granularity)
Copy code
SELECT approx_distinct(id) AS "count"
FROM table
WHERE start_date <= current_date()  AND end_date >= current_date()
BTW, what about where cat in ('a', 'b', 'c')?
m
Yes, will update the doc
👍 1