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

   ## Summary
   
   Doc page (4.x): \`scalar-functions/string-functions/from-base64.md\` (ZH).
   
   The UTF-8 example used base64 inputs that don't decode to the strings shown 
in the result column:
   
   | Base64 literal | What the cluster actually returns | What the doc shows |
   |---|---|---|
   | \`4bmt4bmb4bmA\` | \`ṭṛṀ\` | \`ṭṛì\` |
   | \`4bmN4bmNdW1haSBoZWxsbw==\` | \`ṍṍumai hello\` | \`ḍḍumai hello\` |
   
   Most likely a typo where an \`i\` was written as \`m\` in two places (a 
single hex nibble different: B8 vs B9). Replace with the correct RFC 4648 
base64 for the intended strings:
   
   \`\`\`
   '4bmt4bmbw6w='              → 'ṭṛì'
   '4biN4biNdW1haSBoZWxsbw=='  → 'ḍḍumai hello'
   \`\`\`
   
   ## Verification
   
   Confirmed on Apache Doris 4.1.1 — the corrected base64 inputs return exactly 
the strings already shown in the result block.
   
   ## Test plan
   
   - [x] Run the corrected SQL on a 4.1.1 cluster — outputs match.
   - [x] Result-block divider widths updated to match the new (longer) base64 
strings in the column headers.
   - [x] No other change.
   
   🤖 Generated with [Claude Code](https://claude.com/claude-code)


-- 
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