-
Notifications
You must be signed in to change notification settings - Fork 120
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
Add support for OF in row lock clauses #288
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## master #288 +/- ##
==========================================
+ Coverage 90.62% 90.63% +0.01%
==========================================
Files 124 124
Lines 7079 7094 +15
==========================================
+ Hits 6415 6430 +15
Misses 513 513
Partials 151 151 ☔ View full report in Codecov by Sentry. |
Could you also add one integration test just to make sure everything works with live db. |
Done in 71654cd. |
This adds support for statements such as `SELECT ... FOR UPDATE OF table NOWAIT` where `OF table` could not be specified previously. Fixes #285.
LGTM. 👍 |
This adds support for statements such as
SELECT ... FOR UPDATE OF table NOWAIT
whereOF table
could not be specified previously. Fixes #285.