次のクエリは mysql クエリ ブラウザーで正常に動作しますが、これを jpql またはネイティブ クエリに移動し、エンティティ マネージャーを使用して実行しようとすると、結果が得られず、エラーも表示されません。
私は Hibernate コア 3.3.0 Entity Manager 3.4.0 を、注入用の entityManager 用のスプリング IOC とともに使用しています。
select * from location
where 1=1
and latitude is not null and longitude is not null
and (6371 *
acos( cos( radians(12.922253 ) ) *
cos( radians(latitude) ) *
cos( radians( 77.614417 ) - radians(longitude) )
+ sin( radians(12.922253 ) ) *
sin( radians( latitude ) )
) ) < 100.0