diff --git a/CHANGELOG.md b/CHANGELOG.md index 80540c45..735ec00d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/query/helper.rs b/src/query/helper.rs index c5511cd6..a4f180e1 100644 --- a/src/query/helper.rs +++ b/src/query/helper.rs @@ -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