-
Notifications
You must be signed in to change notification settings - Fork 72
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
Quack IndexScan #45
Quack IndexScan #45
Conversation
mkaruza
commented
Jun 17, 2024
- Support IndexScan. Based on best path we will execute IndexScan or fallback to normal seq scan.
closes #22 - at least to my satisfaction. we can add a separate issue for other index types (i.e. BRIN). |
can you explain the impact of the lock here? |
Running query like |
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
* Support IndexScan. Based on best path we will execute IndexScan or fallback to normal seq scan.
* When there are multiple replacement scan running in same process we still need to protect calls to PG functions that are not thread safe.