JPA 4.0 brings:
record Summary(String title, String isbn, LocalDate date) {}
select title, isbn, pubDate
from Book
where title like = ?1 and pubDate > ?2
that isn't limited to Records and so we can remove our DTO projection rewrite functionality, or at least, refine it (see also #3929)