boluor opened a new pull request, #3659:
URL: https://github.com/apache/doris-website/pull/3659

   ## Summary
   
   Fixes the equivalent-query example in the BITMAP precise deduplication doc.
   
   The example used `SELECT COUNT(DISTINCT pv) FROM test_bitmap;`, but the 
`test_bitmap` table has no `pv` column — it only has `id`. The result header 
was also wrong (`count(DISTINCT \`uv\`)` / `count(DISTINCT \`pv\`)`).
   
   Corrected to `SELECT COUNT(DISTINCT id)` with header `count(DISTINCT 
\`id\`)`.
   
   Affected files:
   - `docs-next` (English, next)
   - `i18n/zh-CN/.../docs-next/current` (Chinese, next)
   - `i18n/zh-CN/.../version-2.1` (Chinese)
   - `i18n/zh-CN/.../version-3.x` (Chinese)
   - `i18n/zh-CN/.../version-4.x` (Chinese)
   
   The English released versions (2.1/3.x/4.x) were already correct.
   
   Closes #62827
   
   ## Test plan
   
   - [x] Verified `test_bitmap` table definition contains only `id` (no `pv`)
   - [x] Confirmed English released versions already use `id`, so no change 
needed there


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to