Solution was in fetchData settings. It takes by default 10 rows (I understand it in that way).
Query query = entityManager.createNativeQuery(...);
List<Object[]> results = query.unwrap(org.hibernate.query.NativeQuery.class).setFetchSize(1000).getResultList();
Unwrap with fetchData is the solution.