[fix](doc) v2.1: fix point-query backtick and SECOND() expected output#3857
Merged
morningman merged 1 commit intoMay 30, 2026
Merged
Conversation
Backport of v3.x fixes (apache#3853, apache#3854). 1. high-concurrent-point-query.md: misplaced backtick in DISTRIBUTED BY HASH(`k1)` -> HASH(`k1`); the malformed column ref makes the parser reject the CREATE TABLE (missing ')' at 'BUCKETS'). 2. second.md: the example select second('2018-12-31 23:59:59') documented the value as 0 with a mismatched header cast('2018-12-30' ...); the correct result is 59. Co-Authored-By: Claude Opus 4.8 (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.
Backport of #3853 + #3854 to
version-2.1(both are EN-only typos/expected-value fixes; ZH already correct on these pages).Problems
high-concurrent-point-query.md— misplaced backtick inDISTRIBUTED BY HASH(k1)`` (should beHASH(k1`)`). The malformed column reference makes the parser reject the whole `CREATE TABLE`: `missing ')' at 'BUCKETS'`.second.md— the exampleselect second('2018-12-31 23:59:59')is documented with value0and a mismatched headercast('2018-12-30' ...); the correct result is59.Cluster verification (Doris 2.1.11-rc01)
🤖 Generated with Claude Code