Ajay Paul

Results 21 comments of Ajay Paul

Hi @rfelcman Please find below entity ``` public class Vehicle { public String make; public String model; public int numSeats; public float price; public String vinId; } ``` Here **vinId**...

Hi @rfelcman / @lukasj , We've been investigating issue 2243, and based on our findings, it appears to be related to EclipseLink. We tested the same scenario using a standalone...

Hi @rfelcman Please find the details below : * persistence.xml ``` java.lang.String java.lang.String ``` DemographicInfo Model: ``` @Entity public class DemographicInfo { @Column public Instant collectedOn; @GeneratedValue @Id public BigInteger...

Hi @rfelcman Please find the entity below : ``` @Entity @IdClass(CityId.class) public class City { @ElementCollection(fetch = FetchType.EAGER) public Set areaCodes; @Version long changeCount; @Id public String name; public int...

Hi @rfelcman Please find the recreate details : ```java @Test public void testElementCollection() throws Exception { ECEntity e1 = new ECEntity(); e1.setId("EC1"); e1.setIntArray(new int[] { 14, 12, 1 }); e1.setLongList(new...

Hi @rfelcman Please find the DDL statements below as you mentioned : - CREATE TABLE ECENTITY (ID VARCHAR(255) NOT NULL, INTARRAY BLOB(2147483647), LONGLIST BLOB(2147483647), STRINGSET BLOB(2147483647), PRIMARY KEY (ID)) -...

Hi @rfelcman We already know that the test case is doing something that is not permitted by EclipseLink/JPA in querying for an ElementCollection value in JPQL. That isn't the point....

Recreate steps : Model : ``` @Entity public class DemographicInfo { @Column public Instant collectedOn; @GeneratedValue @Id public BigInteger id; @Column public BigDecimal publicDebt; @Column public BigDecimal intragovernmentalDebt; @Column public...

@rfelcman Your test case is passing on my end as well. I'll review further and get back to you