boluor opened a new pull request, #3893: URL: https://github.com/apache/doris-website/pull/3893
### Problem The `IPV4_STRING_TO_NUM_OR_DEFAULT` page (version-3.x and version-2.1, EN + ZH) shows: ```sql select str, ipv4_string_to_num_or_default(str) from ipv4_str; ``` but the page never defines `ipv4_str`, so the example fails with `table does not exist`. ### Fix Add a visible `CREATE TABLE` + `INSERT` block before the example so it is self-contained. No change to the example SQL or its expected output. ### Verification Ran the modified pages end-to-end on fresh live clusters — Doris **3.1.4** (version-3.x) and **2.1.11** (version-2.1). The example reproduces the documented output exactly (`0.0.0.0`→0, `127.0.0.1`→2130706433, `255.255.255.255`→4294967295, `invalid`→0). Files: version-3.x + version-2.1, EN + ZH (4 files). 🤖 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]
