-
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
planner/core: fix unexpected error of window function #9567
Conversation
go.mod
Outdated
@@ -87,3 +87,5 @@ require ( | |||
sourcegraph.com/sourcegraph/appdash v0.0.0-20180531100431-4c381bd170b4 | |||
sourcegraph.com/sourcegraph/appdash-data v0.0.0-20151005221446-73f23eafcf67 | |||
) | |||
|
|||
replace gihtub.com/pingcap/parser => github.com/winoros/parser v0.0.0-20190305081723-e7cb6045c53f |
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.
is this change related?
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, this fix needs changes from parser.
/run-all-tests |
Codecov Report
@@ Coverage Diff @@
## master #9567 +/- ##
==============================================
+ Coverage 67.41% 67.4322% +0.0222%
==============================================
Files 376 376
Lines 79190 79195 +5
==============================================
+ Hits 53382 53403 +21
+ Misses 21036 21021 -15
+ Partials 4772 4771 -1 |
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.
LGTM
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.
LGTM, please resolve conflicts.
@zz-jason We need to merge pingcap/parser#236 to update go.mod |
What problem does this PR solve?
fix #9554
What is changed and how it works?
Let TiDB distinguish
over w
andover(w)
Check List
Tests