-
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 show session binding #10285
* : support show session binding #10285
Conversation
Codecov Report
@@ Coverage Diff @@
## master #10285 +/- ##
================================================
+ Coverage 77.8178% 77.8366% +0.0188%
================================================
Files 410 410
Lines 84365 84324 -41
================================================
- Hits 65651 65635 -16
+ Misses 13813 13796 -17
+ Partials 4901 4893 -8 |
Codecov Report
@@ Coverage Diff @@
## master #10285 +/- ##
===========================================
Coverage ? 77.7416%
===========================================
Files ? 410
Lines ? 84539
Branches ? 0
===========================================
Hits ? 65722
Misses ? 13907
Partials ? 4910 |
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 |
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)
show session bindings
:What is changed and how it works?
Check List
Tests
Code changes
N/A
Side effects
N/A
Related changes
N/A