[Bug] Collect agg merge engine return duplicate list even we set filed distinct #4999
Open
2 tasks done
Labels
bug
Something isn't working
Search before asking
Paimon version
master
1.0
0.9
0.8
Compute Engine
none
Minimal reproduce step
INSERT INTO test_collect VALUES (1, ARRAY['A', 'B', 'A', 'A']);
SELECT * FROM test_collect
the result is as follows, it does not meet expectations
1, [A, B, A, A]
What doesn't meet your expectations?
Return deduplicate list value.
for above example, the result shoud be:
1, [A, B]
Anything else?
no
Are you willing to submit a PR?
The text was updated successfully, but these errors were encountered: