-
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
*: support drop session binding #10287
*: support drop session binding #10287
Conversation
Codecov Report
@@ Coverage Diff @@
## master #10287 +/- ##
================================================
+ Coverage 77.8178% 77.8333% +0.0155%
================================================
Files 410 410
Lines 84365 84325 -40
================================================
- Hits 65651 65633 -18
+ Misses 13813 13801 -12
+ Partials 4901 4891 -10 |
Codecov Report
@@ Coverage Diff @@
## master #10287 +/- ##
===============================================
+ Coverage 77.8256% 77.8306% +0.005%
===============================================
Files 410 410
Lines 84715 84689 -26
===============================================
- Hits 65930 65914 -16
+ Misses 13856 13851 -5
+ Partials 4929 4924 -5 |
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 |
/run-common-test |
/run-all-tests |
/run-mybatis-test |
What problem does this PR solve?
associated iusse: #8935
feature: support add session binding
use case:
create table t(i int, s varchar(20))
create index index_t on t(i,s)
if we want to create a binding for current session, then we execute such SQL:
create session binding for select * from t using select * from t use index for join(index_t)
if we want to drop this session binding,we execute SQL:
drop session binding for select * from t
What is changed and how it works?
Check List
Tests
Code changes
N/A
Side effects
N/A
Related changes
N/A