Changelog
This commit is contained in:
parent
7eb3e12294
commit
f27526b79d
@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
* Improve query performance of `Paginator`'s `COUNT` query https://github.com/SeaQL/sea-orm/pull/2030
|
||||
* Added SQLx slow statements logging to `ConnectOptions` https://github.com/SeaQL/sea-orm/pull/2055
|
||||
* Added `QuerySelect::lock_with_behavior` https://github.com/SeaQL/sea-orm/pull/1867
|
||||
|
||||
### House keeping
|
||||
|
||||
|
@ -449,7 +449,7 @@ pub trait QuerySelect: Sized {
|
||||
|
||||
/// Row locking with behavior (if supported).
|
||||
///
|
||||
/// See [`SelectStatement::lock_with_behavior`].
|
||||
/// See [`SelectStatement::lock_with_behavior`](https://docs.rs/sea-query/*/sea_query/query/struct.SelectStatement.html#method.lock_with_behavior).
|
||||
fn lock_with_behavior(mut self, r#type: LockType, behavior: LockBehavior) -> Self {
|
||||
self.query().lock_with_behavior(r#type, behavior);
|
||||
self
|
||||
|
Loading…
x
Reference in New Issue
Block a user