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
We are planning to use FOR UPDATE NO WAIT to return with an exception instead of getting blocked on another transaction.
FOR UPDATE NO WAIT
is there any reason this was not added for postgres here ?
If no particular reason, we can raise a PR to support this.
The text was updated successfully, but these errors were encountered:
Support for FOR UPDATE NO WAIT on postgres. #1623
8cabfee
Hey @Tapac! How I can use it with update statement? e.g. MyTable.update( {<where statement>}, forUpdate = MODE.SKIP_LOCKED ) { <update statement> }
MyTable.update( {<where statement>}, forUpdate = MODE.SKIP_LOCKED ) { <update statement> }
Sorry, something went wrong.
No branches or pull requests
We are planning to use
FOR UPDATE NO WAIT
to return with an exception instead of getting blocked on another transaction.is there any reason this was not added for postgres here ?
If no particular reason, we can raise a PR to support this.
The text was updated successfully, but these errors were encountered: