-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Closed
Labels
Description
Search before asking
- I had searched in the issues and found no similar issues.
Description
I need bitmap_distinct for data handling.
My requirement is to use the features of Bitmap itself to deduplicate columns and obtain the unique column values.
Current situation(Reasons for dissatisfaction):
SELECT
dt
,bitmap_to_string(bitmap_union(to_bitmap(user_id)))
FROM
mytable
GROUP BY
dtit return one column for user_id

Expected:
SELECT
dt
,bitmap_distinct(to_bitmap(user_id))
FROM
mytable
GROUP BY
dtSolution
Doris Java UDF
Are you willing to submit PR?
- Yes I am willing to submit a PR!
Code of Conduct
- I agree to follow this project's Code of Conduct
