We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is your feature request related to a problem? Please describe:
When we only want to get primary key, we can consider index path if there is no condition on the PK. For example:
create table t1 (a int primary key, b int, .... many columns, index idx_b(b)); create table t2 (a int, b int);
In this query, we can use IndexScan for t1.a:
IndexScan
t1.a
select t2.a, t2.b from t1, t2 where t1.a = t2.a;
We can also use a IndexScan for this one:
select count(1) from t1;
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Feature Request
Is your feature request related to a problem? Please describe:
When we only want to get primary key, we can consider index path if there is no condition on the PK. For example:
In this query, we can use
IndexScan
fort1.a
:We can also use a
IndexScan
for this one:The text was updated successfully, but these errors were encountered: