Fix broken test on pgsql Jenkins pipeline

This commit is contained in:
Gail Badner 2017-06-21 20:23:29 -07:00 committed by Vlad Mihalcea
parent 9584b16089
commit 027ca97090
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ import org.hibernate.annotations.NamedQuery;
query = "SELECT pr.name AS name, count(*) AS phoneCount " +
"FROM Phone p " +
"JOIN Person pr ON pr.id = p.person_id " +
"GROUP BY p.person_id",
"GROUP BY pr.name",
resultSetMapping = "person_phone_count",
timeout = 1,
readOnly = true