Skip to content

Commit 9a37472

Browse files
authored
Merge pull request #32082 from gefloh/add-missing-quote
Add missing quote in Hibernate Reactive with Panache guide
2 parents 895d9fe + 6d46c2e commit 9a37472

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/main/asciidoc/hibernate-reactive-panache.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -712,7 +712,7 @@ It is not possible to have a HQL `select new` query and `.project(Class)` at the
712712
For example, this will fail:
713713
[source,java]
714714
----
715-
PanacheQuery<RaceWeight> query = Person.find("select new MyView(d.race, AVG(d.weight)) from Dog d group by d.race).project(AnotherView.class);
715+
PanacheQuery<RaceWeight> query = Person.find("select new MyView(d.race, AVG(d.weight)) from Dog d group by d.race").project(AnotherView.class);
716716
----
717717
====
718718

0 commit comments

Comments
 (0)