Uh oh!
There was an error while loading. Please reload this page.
[branch-2.1](function) fix random_bytes return same data for multi rows (#39891) - #40137
Merged
Merged
Conversation
doris-robot
commented
Aug 29, 2024
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
zclllyybb
commented
Aug 29, 2024
ContributorAuthor
run buildall |
Contributor
clang-tidy review says "All clean, LGTM! 👍" |
zclllyybb
commented
Aug 29, 2024
ContributorAuthor
run buildall |
yiguoleiforce-pushed
the
pick_random_bytes_21
branch
from
August 29, 2024 15:55
da54be2 to
75947ddCompareyiguolei
commented
Aug 29, 2024
Contributor
run buildall |
Contributor
clang-tidy review says "All clean, LGTM! 👍" |
…che#39891) Issue Number: close #xxx before: ```sql mysql [optest]>SELECT random_bytes(10) a FROM numbers("number" = "10"); +------------------------+ | a | +------------------------+ | 0x7b4e5727024bc5b59e2c | | 0x7b4e5727024bc5b59e2c | | 0x7b4e5727024bc5b59e2c | | 0x7b4e5727024bc5b59e2c | | 0x7b4e5727024bc5b59e2c | | 0x7b4e5727024bc5b59e2c | | 0x7b4e5727024bc5b59e2c | | 0x7b4e5727024bc5b59e2c | | 0x7b4e5727024bc5b59e2c | | 0x7b4e5727024bc5b59e2c | +------------------------+ ``` now: ```sql mysql [optest]>SELECT random_bytes(10) a FROM numbers("number" = "10"); +------------------------+ | a | +------------------------+ | 0xd82cf60825b29ef2a0fd | | 0x6f8c808415bdbaa6d257 | | 0x7c26b5214297a151c25c | | 0x43f02c77293063900437 | | 0x5e5727569dec5e24f96b | | 0x434f20bf74d7759640b7 | | 0x087ed96b739750c733a6 | | 0xdf05f6d7ede4972eb846 | | 0xcefab471912264b5c54f | | 0x1bddc019409d1926aa10 | +------------------------+ ```
zclllyybbforce-pushed
the
pick_random_bytes_21
branch
from
August 29, 2024 16:53
75947dd to
afa5ac8Comparezclllyybb
commented
Aug 29, 2024
ContributorAuthor
run buildall |
Contributor
clang-tidy review says "All clean, LGTM! 👍" |
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 freeto 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.
pick #39891
Issue Number: close #xxx
before:
now:
Proposed changes
Issue Number: close #xxx