JPA is clarifying the type for numeric literals used in queries to explicitly follow Java expectations , plus {{BigInteger}} and {{BigDecimal}} variants . We will get ahead of that curve by aligning with those expectations in 6.3
* Integer - {{123}} * Long - {{123l}}, {{123L}} * BigInteger - {{123bi}}, {{123BI}}
* Double - {{123.4}}
* Float literal - {{123.4f}}, {{123.4F}} * BigDecimal literal - {{123.4bd}}, {{123.4BD}} |
|