HHH-17807 add test

This commit is contained in:
Gavin King 2024-03-05 17:55:17 +01:00
parent 5a7661be5c
commit db1b3b3f40
1 changed files with 3 additions and 0 deletions

View File

@ -69,4 +69,7 @@ public interface Dao {
@HQL("from Publisher where address = :address")
List<Publisher> publisherAt(Address address);
@HQL("where array_contains(:isbns, isbn) is true")
List<Book> forIsbnIn(String[] isbns);
}