-
Notifications
You must be signed in to change notification settings - Fork 5.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
expression: open CAST push down switcher default #12652
Merged
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
8e27d6b
expression: open CAST push down switcher default
lonng c275ef1
fix plan explain diff after cop cast push down
H-ZeX c6ebe83
Merge branch 'master' of https://github.com/pingcap/tidb into cast-pu…
H-ZeX 3d31c27
fix ci failed
H-ZeX c33b5fa
fix ci failed
H-ZeX 5f09713
fix ci failed
H-ZeX 62639e8
go mod tidy
lonng 3285154
Merge remote-tracking branch 'origin/master' into cast-push-down
lonng d98dfc4
Merge remote-tracking branch 'origin/master' into cast-push-down
lonng fec2b71
tiny tweak logic
lonng 4432ba2
Merge branch 'master' into cast-push-down
lonng 5ab6317
Merge branch 'master' into cast-push-down
H-ZeX 3746056
fix decimal evaluation precesion issue
lonng 8755851
Merge branch 'master' into cast-push-down
lonng 799bd92
fix the CI failure
lonng 7c2d019
Merge remote-tracking branch 'origin/master' into cast-push-down
lonng df9f35f
revert some changes
lonng 7afdfba
Merge remote-tracking branch 'origin/master' into cast-push-down
lonng 677f3c5
Merge branch 'master' into cast-push-down
lonng 9b37da7
Merge branch 'master' into cast-push-down
lonng 7607ac5
Merge branch 'master' into cast-push-down
lonng 57b24be
Merge branch 'master' into cast-push-down
lonng 9c620a7
Merge branch 'master' into cast-push-down
lonng 6d0d3b2
Merge remote-tracking branch 'origin/master' into cast-push-down
lonng 9acf7ad
address comment
lonng e606ac3
fix imports
lonng e46be5c
Merge branch 'master' into cast-push-down
lonng daf7a02
Merge branch 'master' into cast-push-down
lonng 9fc8390
Merge branch 'master' into cast-push-down
lonng 48d4832
Merge branch 'master' into cast-push-down
lonng a04215c
Merge branch 'master' into cast-push-down
lonng File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
address comment
Signed-off-by: Lonng <heng@lonng.org>
- Loading branch information
commit 9acf7addc21b0bda1b9313cd3a398afd092972b5
There are no files selected for viewing
This file contains 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why put
return
after creatingdata
? Iferr != nil
,to
is not even integral.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, we should return the data even though overflow occurred (the caller should handle it in a proper way if the err is overflow or truncated).