Changelog

This commit is contained in:
Chris Tsang 2024-01-14 15:43:57 +00:00
parent 7eb3e12294
commit f27526b79d
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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