We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dd9f54 commit 787ee00Copy full SHA for 787ee00
hibernate-reactive-core/src/test/java/org/hibernate/reactive/QueryTest.java
@@ -710,7 +710,7 @@ public void testNativeSelectionQueryGetResultCountWithMutiny(VertxTestContext co
710
test( context, getSessionFactory()
711
.withTransaction( s -> s.persist( author1, author2 ) )
712
.thenCompose( v -> getSessionFactory().withSession( s -> s
713
- .createNativeQuery( "from " + AUTHOR_TABLE, Author.class )
+ .createNativeQuery( "select * from " + AUTHOR_TABLE, Author.class )
714
.getResultCount() ) )
715
.thenAccept( count -> assertEquals( 2L, count ) )
716
);
0 commit comments