23931017wu opened a new pull request, #24552: URL: https://github.com/apache/doris/pull/24552
## Proposed changes Change the sql and result set in array enumerate uniq.md ### fix 1 select k2, array_enumerate_uniq([1, 2, 3, 1, 2, 3]); --> select array_enumerate_uniq([1, 2, 3, 1, 2, 3]); ### fix 2 +-----------------------------------------------+ | array_enumerate_uniq(ARRAY(1, 2, 3, 1, 2, 3)) | +-----------------------------------------------+ | [1, 1, 1, 2, 2, 2] | +-----------------------------------------------+ || || \ / \ / +-----------------------------------------------+ | array_enumerate_uniq(ARRAY(1, 2, 3, 1, 2, 3)) | +-----------------------------------------------+ | [1, 1, 1, 2, 2, 2] | +-----------------------------------------------+ ## Actual test result  ## After  -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org