[fix](doc) zh random.md upper-bound text and bitwise OR cell rendering#3756
Merged
Merged
Conversation
…endering - `numeric-functions/random.md` (zh, current / 2.1 / 3.x / 4.x): the `<b>` parameter description read "随机数的上限 必须小于下限" — the upper bound must be GREATER than the lower bound. Corrected to "必须大于下限". - `basic-element/operators/bitwise-operators.md` (EN + zh, all maintained versions): the `SELECT 1 | 2` example in the OR row contained a literal pipe inside an inline-code cell, which Docusaurus' table renderer truncates to ``SELECT 1`` (visible at /zh-CN/docs/3.0/sql-manual/basic-element/operators/bitwise-operators). Escape the pipe with `&apache#124;` so the cell renders as `SELECT 1 | 2`. Fixes apache#2464 Fixes apache#2463 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Two unrelated but small fixes:
SELECT 1(visible on the live site). Escape the pipe with `|` so it renders as `SELECT 1 | 2`. Applied to all 8 maintained-version files.Fixes #2464
Fixes #2463