[fix](doc) quote.md en: drop backslash escape from expected output#3808
Open
boluor wants to merge 1 commit into
Open
[fix](doc) quote.md en: drop backslash escape from expected output#3808boluor wants to merge 1 commit into
boluor wants to merge 1 commit into
Conversation
The EN example expected `'It\'s a test'` but the cluster prints `'It's a test'` (no backslash) when feeding the same SELECT through the mysql client on Apache Doris 4.1.1. The ZH counterpart already shows the unescaped form. 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
Doc page (4.x): `scalar-functions/string-functions/quote.md` (EN).
The EN example claimed:
```
| quote("It's a test") |
+----------------------+
| 'It\'s a test' |
```
But on Apache Doris 4.1.1 the actual mysql client output is:
```
| quote("It's a test") |
+----------------------+
| 'It's a test' |
```
(No backslash before the inner single quote.) ZH already shows the unescaped form. Update EN to match the actual cluster output.
Verification
`mysql -e "SELECT quote(\"It's a test\");"` against a 4.1.1 cluster returns the unescaped form quoted above.
Test plan
🤖 Generated with Claude Code