-
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: Fix incorrect behavior of greatest/least when mixed temporal type with others #31037
Merged
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
a2dc3eb
Fix greatest/least issue when handling duration type
29185d6
Fix some greatest/least function incorrect behavior when mixed types
yibin87 4a29734
Fix greatest/least issue when handling duration type
yibin87 56e033c
merge changes from trunk
yibin87 545dec2
Separate GreatestTime and GreatestDate, LeastTime and LeastDate, and …
yibin87 5ffc3a6
Merge branch 'master' of github.com:yibin87/tidb
yibin87 a4d5db5
Merge branch 'master' into master
yibin87 fb273c7
Add support for vector greatest/least functions
yibin87 2dac27c
Merge branch 'master' of github.com:yibin87/tidb
yibin87 e1574b1
make format
yibin87 5c4aef3
Format enum definitions
yibin87 6ad60a3
Format enum definitions
yibin87 3003a03
Format enum definitions
yibin87 9e571ff
Format change
yibin87 18244f0
Format change
yibin87 f1fc032
Format change
yibin87 367ab6e
Refact code and add vec test cases
yibin87 630983e
Merge branch 'master' into master
yibin87 b745867
Fmt changes
yibin87 1e11ca0
Modify comment to trigger unit test
yibin87 d4505c3
Adjust import sequence
yibin87 3ba6f5d
Merge branch 'master' into master
ti-chi-bot de2240f
Merge branch 'master' into master
ti-chi-bot a6addf6
Merge branch 'master' into master
ti-chi-bot fa47deb
Merge branch 'master' into master
ti-chi-bot 88fd4d6
Fix mysql test json case
yibin87 6bbb43d
Merge branch 'master' of github.com:yibin87/tidb
yibin87 6ba4c28
Merge branch 'master' into master
yibin87 356c372
Add JSON tests
yibin87 2fabae4
Merge branch 'master' of github.com:yibin87/tidb
yibin87 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
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
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
Oops, something went wrong.
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.
The
vecEvalxxx
of the sig also needs to be fixed.