-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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 select
/ explain select
using bind info
#10284
Conversation
Codecov Report
@@ Coverage Diff @@
## master #10284 +/- ##
================================================
+ Coverage 77.7588% 77.7849% +0.0261%
================================================
Files 410 411 +1
Lines 85117 84965 -152
================================================
- Hits 66186 66090 -96
+ Misses 13979 13937 -42
+ Partials 4952 4938 -14 |
/rebuild |
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 |
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-integration-common-test |
select
/ explain select
using bind info
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)
create session binding for select * from t using select * from t use index for join(index_t)
then when we execute
select * from t
, we will executeselect * from t use index for join(index_t)
in actually.What is changed and how it works?
Check List
Tests
Code changes
N/A
Side effects
N/A
Related changes
N/A