add to tests

Signed-off-by: Gavin King <gavin@hibernate.org>
This commit is contained in:
Gavin King 2024-04-05 00:39:28 +02:00
parent 15a2d5cb8b
commit 66838ef44b
1 changed files with 6 additions and 0 deletions

View File

@ -192,4 +192,10 @@ public interface BookAuthorRepository {
@Update
Book edit(Book book);
@Find
List<Author> withNoOrder1(PageRequest pageRequest);
@Query("")
List<Author> withNoOrder2(PageRequest pageRequest);
}