-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1499 from jgrassel/IntegrateBug579726ForGH1485_3.0
Bug 579726: CriteriaBuilder neg() only returns Integer type.
- Loading branch information
Showing
3 changed files
with
173 additions
and
3 deletions.
There are no files selected for viewing
105 changes: 105 additions & 0 deletions
105
...k.jpa.test.jse/src/it/java/org/eclipse/persistence/jpa/test/criteria/TestNegFunction.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
/* | ||
* Copyright (c) 2022 Oracle and/or its affiliates. All rights reserved. | ||
* Copyright (c) 2022 IBM Corporation. All rights reserved. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0, | ||
* or the Eclipse Distribution License v. 1.0 which is available at | ||
* http://www.eclipse.org/org/documents/edl-v10.php. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause | ||
*/ | ||
// Contributors: | ||
// 04/19/2022: Jody Grassel | ||
// - Issue 579726: CriteriaBuilder neg() only returns Integer type, instead of it's argument expression type. | ||
package org.eclipse.persistence.jpa.test.criteria; | ||
|
||
import java.math.BigDecimal; | ||
import java.util.ArrayList; | ||
import java.util.Collection; | ||
import java.util.List; | ||
|
||
import jakarta.persistence.EntityManager; | ||
import jakarta.persistence.EntityManagerFactory; | ||
import jakarta.persistence.criteria.CriteriaBuilder; | ||
import jakarta.persistence.criteria.CriteriaQuery; | ||
import jakarta.persistence.criteria.Expression; | ||
import jakarta.persistence.criteria.Root; | ||
import jakarta.persistence.criteria.Selection; | ||
|
||
import org.eclipse.persistence.jpa.test.criteria.model.CoalesceEntity; | ||
import org.eclipse.persistence.jpa.test.criteria.model.CritEntity; | ||
import org.eclipse.persistence.jpa.test.framework.DDLGen; | ||
import org.eclipse.persistence.jpa.test.framework.Emf; | ||
import org.eclipse.persistence.jpa.test.framework.EmfRunner; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
|
||
@RunWith(EmfRunner.class) | ||
public class TestNegFunction { | ||
@Emf(createTables = DDLGen.DROP_CREATE, classes = { CritEntity.class }) | ||
private EntityManagerFactory emf; | ||
|
||
@Test | ||
public void testNegFunction() throws Exception { | ||
EntityManager em = emf.createEntityManager(); | ||
|
||
try { | ||
CritEntity ce = new CritEntity(); | ||
ce.setId(1); | ||
ce.setValue(new BigDecimal("3.14")); | ||
|
||
em.getTransaction().begin(); | ||
em.persist(ce);; | ||
em.getTransaction().commit(); | ||
em.clear(); | ||
|
||
CriteriaBuilder criteriaBuilder = em.getCriteriaBuilder(); | ||
CriteriaQuery<DecHolder> criteriaQuery = criteriaBuilder.createQuery(DecHolder.class); | ||
Root<CritEntity> entityRoot = criteriaQuery.from(CritEntity.class); | ||
|
||
Collection<Selection<?>> selections = new ArrayList<Selection<?>>(); | ||
|
||
Expression<BigDecimal> valExpr = entityRoot.get("value"); | ||
|
||
selections.add(criteriaBuilder.sum( | ||
criteriaBuilder.<BigDecimal> selectCase() | ||
.when(criteriaBuilder.equal(entityRoot.get("id"), 0), valExpr) | ||
.otherwise(criteriaBuilder.neg(valExpr)))); | ||
|
||
criteriaQuery.multiselect(selections.toArray(new Selection[] {})); | ||
|
||
List<DecHolder> retList = em.createQuery(criteriaQuery).getResultList(); | ||
} finally { | ||
if (em.getTransaction().isActive()) { | ||
em.getTransaction().rollback(); | ||
} | ||
if(em.isOpen()) { | ||
em.close(); | ||
} | ||
} | ||
} | ||
|
||
public static class DecHolder { | ||
private BigDecimal value; | ||
|
||
public DecHolder(Object value) { | ||
super(); | ||
this.value = (BigDecimal) value; | ||
} | ||
|
||
public BigDecimal getValue() { | ||
return value; | ||
} | ||
|
||
public void setValue(BigDecimal value) { | ||
this.value = value; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "DecHolder [value=" + value + "]"; | ||
} | ||
} | ||
} |
62 changes: 62 additions & 0 deletions
62
....jpa.test.jse/src/it/java/org/eclipse/persistence/jpa/test/criteria/model/CritEntity.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* | ||
* Copyright (c) 2022 Oracle and/or its affiliates. All rights reserved. | ||
* Copyright (c) 2022 IBM Corporation. All rights reserved. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0, | ||
* or the Eclipse Distribution License v. 1.0 which is available at | ||
* http://www.eclipse.org/org/documents/edl-v10.php. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause | ||
*/ | ||
// Contributors: | ||
// 04/19/2022: Jody Grassel | ||
// - Issue 579726: CriteriaBuilder neg() only returns Integer type, instead of it's argument expression type. | ||
package org.eclipse.persistence.jpa.test.criteria.model; | ||
|
||
import java.math.BigDecimal; | ||
|
||
import jakarta.persistence.Basic; | ||
import jakarta.persistence.Column; | ||
import jakarta.persistence.Entity; | ||
import jakarta.persistence.Id; | ||
|
||
@Entity | ||
public class CritEntity { | ||
@Id | ||
private int id; | ||
|
||
@Basic | ||
@Column(precision = 10, scale = 2) | ||
private BigDecimal value; | ||
|
||
public CritEntity() { | ||
|
||
} | ||
|
||
public int getId() { | ||
return id; | ||
} | ||
|
||
public void setId(int id) { | ||
this.id = id; | ||
} | ||
|
||
public BigDecimal getValue() { | ||
return value; | ||
} | ||
|
||
public void setValue(BigDecimal bigDec) { | ||
this.value = bigDec; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "CritEntity [id=" + id + ", value=" + value + "]"; | ||
} | ||
|
||
|
||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters