boluor opened a new pull request, #3826: URL: https://github.com/apache/doris-website/pull/3826
## Summary Three data-operate pages had examples that could not run on a fresh cluster. | File | What was missing | What this PR adds | |------|------------------|-------------------| | \`data-operate/delete/delete-manual.md\` (EN + ZH) | \`my_table\` with columns \`k1\`, \`status\`, \`dt\` and partitions \`p1\`, \`p2\` | Unique-Key list-partitioned setup block + 6 seed rows right above the first DELETE example | | \`data-operate/delete/delete-manual.md\` (EN + ZH), USING-join section | post-delete result table referred to DELETE's own (empty) output | Wrap the \"Expected result\" block as an explicit \`SELECT * FROM t1 ORDER BY id;\` so the verifier compares against SELECT output, and update grid widths / DOUBLE display to match Apache Doris 4.1.1 (integer-valued DOUBLE has no \`.0\`) | | \`data-operate/transaction.md\` (EN + ZH) | setup for the abstract \`BEGIN; INSERT INTO dt2 SELECT * FROM dt1; INSERT INTO dt3 SELECT * FROM dt2; COMMIT;\` sketch | Convert that block's fence from \`\`\`\`sql\`\`\`\` to \`\`\`\`text\`\`\`\` and update the intro prose to point at the runnable concrete example immediately below it (which already CREATEs/INSERTs the three tables) | | \`data-operate/update/partial-column-update.md\` (EN + ZH) | \`order_tbl\` table itself + seed row \`(1, 'Pending payment', 100)\` | Merge-on-Write Unique-Key CREATE TABLE + INSERT before the initial-state grid, so the subsequent \`SET enable_unique_key_partial_update = true; INSERT INTO order_tbl (order_id, order_status) VALUES (1, 'Pending shipment')\` example actually runs and demonstrates the documented \"amount stays 100, status changes\" behavior | ## Verification Each setup block + the following example was run end-to-end on a single-node Apache Doris 4.1.1 cluster. For \`partial-column-update\` the result is exactly \`(1, 'Pending shipment', 100)\`, matching the doc. ## Test plan - [x] Each affected page's setup + example sequence runs cleanly on 4.1.1. - [x] EN and ZH parallel edited. - [x] No existing examples removed. 🤖 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]
