Skip to content

Commit 787ee00

Browse files
committed
test
1 parent 0dd9f54 commit 787ee00

File tree

1 file changed

+1
-1
lines changed
  • hibernate-reactive-core/src/test/java/org/hibernate/reactive

1 file changed

+1
-1
lines changed

hibernate-reactive-core/src/test/java/org/hibernate/reactive/QueryTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ public void testNativeSelectionQueryGetResultCountWithMutiny(VertxTestContext co
710710
test( context, getSessionFactory()
711711
.withTransaction( s -> s.persist( author1, author2 ) )
712712
.thenCompose( v -> getSessionFactory().withSession( s -> s
713-
.createNativeQuery( "from " + AUTHOR_TABLE, Author.class )
713+
.createNativeQuery( "select * from " + AUTHOR_TABLE, Author.class )
714714
.getResultCount() ) )
715715
.thenAccept( count -> assertEquals( 2L, count ) )
716716
);

0 commit comments

Comments
 (0)