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

   ## Summary
   
   Four pages document a `<verb> <object>` operation but never show the 
matching `CREATE` that establishes the object. On a fresh cluster every one of 
them fails on the very first example.
   
   The 4.x branch is fixing this in #3840 (ALTER-USER) and #3842 (DROP-DATABASE 
/ DROP-ROLE / data-bucketing). This PR ports the exact same fix to 
**dev/master**, where the bug is also present — verified against today's master 
build (downloaded from selectdb-qa-test, 5.14 GB tarball).
   
   ## Changes
   
   | Page | Setup added |
   |---|---|
   | `ALTER-USER.md` (en+zh) | `CREATE USER jack@'%' IDENTIFIED BY ...` |
   | `DROP-DATABASE.md` (en+zh) | `CREATE DATABASE db_test;` |
   | `DROP-ROLE.md` (en+zh) | `CREATE ROLE role1;` |
   | `data-bucketing.md` (en+zh) | `CREATE DATABASE IF NOT EXISTS demo;` (table 
examples qualify with `demo.`) |
   
   ## Verification
   
   End-to-end verified on a freshly deployed master cluster:
   
   ```
   CREATE USER jack@'%' ... → 4 ALTER USER variants → DROP USER     OK
   CREATE DATABASE db_test → DROP DATABASE db_test                  OK
   CREATE ROLE role1 → DROP ROLE role1                              OK
   CREATE DATABASE demo → CREATE TABLE demo.hash_bucket_tbl → DROP  OK
   ```
   
   ## Related
   
   - #3840 (4.x): ALTER-USER
   - #3842 (4.x): DROP-DATABASE / DROP-ROLE / data-bucketing
   
   Two follow-up dev backport PRs will cover the rest of the 4.x doc fixes (zh 
fence/typo cleanups; example expansions for string / array / bitmap / date-time 
functions).
   
   🤖 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