-
Notifications
You must be signed in to change notification settings - Fork 924
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
[KYUUBI #2960] TFrontendService.SERVER_VERSION shall be HIVE_CLI_SERVICE_PROTOCOL_V11 #2961
Conversation
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, pending CI
Codecov Report
@@ Coverage Diff @@
## branch-1.5 #2961 +/- ##
================================================
- Coverage 61.18% 61.17% -0.02%
Complexity 69 69
================================================
Files 302 302
Lines 15095 15095
Branches 1952 1952
================================================
- Hits 9236 9234 -2
Misses 5080 5080
- Partials 779 781 +2
Continue to review full report at Codecov.
|
…I_SERVICE_PROTOCOL_V11
@@ -623,7 +623,7 @@ private[kyuubi] object TFrontendService { | |||
|
|||
final val CURRENT_SERVER_CONTEXT = new ThreadLocal[FeServiceServerContext]() | |||
|
|||
final val SERVER_VERSION = TProtocolVersion.HIVE_CLI_SERVICE_PROTOCOL_V10 | |||
final val SERVER_VERSION = TProtocolVersion.HIVE_CLI_SERVICE_PROTOCOL_V11 |
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.
let's use TProtocolVersion.values.max
once and for all
…ICE_PROTOCOL_V11 ### _Why are the changes needed?_ 1. bugfix for issue #2960 ### _How was this patch tested?_ - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible - [ ] Add screenshots for manual tests if appropriate - [ ] [Run test](https://kyuubi.apache.org/docs/latest/develop_tools/testing.html#running-tests) locally before make a pull request Closes #2961 from CavemanIV/kyuubi-2960. Closes #2960 8aa38eb [zhangliang] TFrontendService always use newest hive cli TProtocolVersion 25e5110 [zhangliang] [KYUUBI #2960] TFrontendService.SERVER_VERSION shall be HIVE_CLI_SERVICE_PROTOCOL_V11 Authored-by: zhangliang <zhangliang@trip.com> Signed-off-by: Fei Wang <fwang12@ebay.com> (cherry picked from commit cf27278) Signed-off-by: Fei Wang <fwang12@ebay.com>
thanks, merged to branch-1.5 and master |
Hi @CavemanIV could you bind the email(zhangliang@trip.com) with your github account? Now your account is not bound. |
Why are the changes needed?
How was this patch tested?
Add some test cases that check the changes thoroughly including negative and positive cases if possible
Add screenshots for manual tests if appropriate
Run test locally before make a pull request