-
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
server: handle partitioned table in some http APIs #11463
Conversation
Now the following two http endpoint supports partitioned table: /tables/{db}/{table}/regions /regions/{regionID}
/run-all-tests |
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
/run-all-tests |
@tiancaiamao merge failed. |
Codecov Report
@@ Coverage Diff @@
## master #11463 +/- ##
===============================================
+ Coverage 81.3575% 81.5416% +0.184%
===============================================
Files 424 424
Lines 90857 91736 +879
===============================================
+ Hits 73919 74803 +884
+ Misses 11623 11619 -4
+ Partials 5315 5314 -1 |
/run-integration-common-test |
cherry pick to release-3.0 in PR #11466 |
What problem does this PR solve?
Visit the HTTP API http://localhost:10080/tables/test/xx/regions
Before:
After:
And the HTTP API http://localhost:10080/regions/44
Before:
After:
What is changed and how it works?
Now the following two http endpoint supports partitioned table:
Check List
Tests
Related changes