[fix](doc) v3.x: fix ZH murmur_hash3_64_v2 example header and values#3865
Open
boluor wants to merge 1 commit into
Open
[fix](doc) v3.x: fix ZH murmur_hash3_64_v2 example header and values#3865boluor wants to merge 1 commit into
boluor wants to merge 1 commit into
Conversation
The v3.x ZH page for MURMUR_HASH3_64_V2 had its example table copied from
the non-v2 MURMUR_HASH3_64 page: the result header read
`murmur_hash3_64(NULL)` / `murmur_hash3_64('hello')` / ... and the values
were the non-v2 results (`-3215607508166160593`, `3583109472027628045`),
even though the SELECT calls `murmur_hash3_64_v2(...)`.
Mirror the already-correct v4.x ZH page, with values verified live on a
master daily build:
select murmur_hash3_64_v2(null), murmur_hash3_64_v2("hello"), murmur_hash3_64_v2("hello", "world");
-> NULL | -3758069500696749310 | -662943091231200135
Backport of the ZH half of apache#3864 (dev) to v3.x; v4.x ZH was already correct.
v3.x has no EN murmur_hash3_64_v2 page, so this is ZH-only.
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.
What
The v3.x ZH page for
MURMUR_HASH3_64_V2had its example result table copied verbatim from the non-v2MURMUR_HASH3_64page. Although theSELECTcallsmurmur_hash3_64_v2(...), the rendered table header showedmurmur_hash3_64(NULL)/murmur_hash3_64('hello')/murmur_hash3_64('hello', 'world')and the values were the non-v2 results:Fix
Mirror the already-correct v4.x ZH page — correct
..._v2header and the actual v2 hash values:Verified live
Run on a master daily build (
doris-0.0.0-2e72603618c):murmur_hash3_64_v2is a deterministic hash, so the result is version-independent; v4.x ZH already shows these values.Scope
ZH-only — v3.x has no EN
murmur_hash3_64_v2page. Backport of the ZH half of #3864 (dev) to v3.x; v4.x ZH was already correct, so no v4.x change is needed.🤖 Generated with Claude Code