Skip to content

Commit

Permalink
Merge pull request #32082 from gefloh/add-missing-quote
Browse files Browse the repository at this point in the history
Add missing quote in Hibernate Reactive with Panache guide
  • Loading branch information
gsmet committed Mar 25, 2023
2 parents 895d9fe + 6d46c2e commit 9a37472
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/hibernate-reactive-panache.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ It is not possible to have a HQL `select new` query and `.project(Class)` at the
For example, this will fail:
[source,java]
----
PanacheQuery<RaceWeight> query = Person.find("select new MyView(d.race, AVG(d.weight)) from Dog d group by d.race).project(AnotherView.class);
PanacheQuery<RaceWeight> query = Person.find("select new MyView(d.race, AVG(d.weight)) from Dog d group by d.race").project(AnotherView.class);
----
====

Expand Down

0 comments on commit 9a37472

Please sign in to comment.