Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for issue 2211 #2289

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,25 @@ public void visit(IdExpression expression) {
//Get id attribute name
ClassDescriptor descriptor = this.queryContext.getDeclaration(variableName).getDescriptor();
List<DatabaseField> primaryKeyFields = descriptor.getPrimaryKeyFields();
String idAttributeName = getIdAttributeNameByField(descriptor.getMappings(), primaryKeyFields.get(0));
StateFieldPathExpression stateFieldPathExpression = new StateFieldPathExpression(expression.getParent(), variableText + "." + idAttributeName);
expression.setStateFieldPathExpression(stateFieldPathExpression);

//Continue with created StateFieldPathExpression
//It handle by ObjectBuilder booth @Id/primary key types (simple/composite)
expression.getStateFieldPathExpression().accept(this);
if (isEmbeddable(descriptor.getMappings())) {
String idAttributeName = getIdAttributeNameByField(descriptor.getMappings(), primaryKeyFields.get(0));
StateFieldPathExpression stateFieldPathExpression = new StateFieldPathExpression(
expression.getParent(), variableText + "." + idAttributeName);
expression.setStateFieldPathExpression(stateFieldPathExpression);
// Continue with created StateFieldPathExpression
// It handle by ObjectBuilder booth @Id/primary key types (simple/composite)
expression.getStateFieldPathExpression().accept(this);
} else {
for (DatabaseField primaryKeyField : primaryKeyFields) {
String idAttributeName = getIdAttributeNameByField(descriptor.getMappings(), primaryKeyField);
StateFieldPathExpression stateFieldPathExpression = new StateFieldPathExpression(
expression.getParent(), variableText + "." + idAttributeName);
expression.setStateFieldPathExpression(stateFieldPathExpression);
// Continue with created StateFieldPathExpression
// It handle by ObjectBuilder booth @Id/primary key types (simple/composite)
expression.getStateFieldPathExpression().accept(this);
}
}
}

/**
Expand All @@ -96,10 +108,24 @@ public void visit(VersionExpression expression) {

private String getIdAttributeNameByField(List<DatabaseMapping> databaseMappings, DatabaseField field) {
for (DatabaseMapping mapping : databaseMappings) {
if (field.equals(mapping.getField()) || mapping.isPrimaryKeyMapping()) {
if (mapping.getFields().size() > 1 && (field.equals(mapping.getField()) || mapping.isPrimaryKeyMapping())) {
return mapping.getAttributeName();
} else {
if ((field.equals(mapping.getField()) && mapping.isPrimaryKeyMapping())) {
return mapping.getAttributeName();
}
}
}
return null;
}

private boolean isEmbeddable(List<DatabaseMapping> databaseMappings) {

for (DatabaseMapping databaseMapping : databaseMappings) {
if (databaseMapping.isPrimaryKeyMapping() && databaseMapping.getFields().size() > 1) {
return true;
}
}
return false;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
import org.eclipse.persistence.jpa.jpql.parser.EntryExpression;
import org.eclipse.persistence.jpa.jpql.parser.ExtractExpression;
import org.eclipse.persistence.jpa.jpql.parser.FunctionExpression;
import org.eclipse.persistence.jpa.jpql.parser.IdExpression;
import org.eclipse.persistence.jpa.jpql.parser.IdentificationVariable;
import org.eclipse.persistence.jpa.jpql.parser.IndexExpression;
import org.eclipse.persistence.jpa.jpql.parser.Join;
Expand Down Expand Up @@ -625,6 +626,10 @@ public void visit(ValueExpression expression) {
addAttribute(identificationVariable.getText(), queryExpression);
}

@Override
public void visit(IdExpression expression){
multipleSelects = true;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There must be additional code like addAttribute or expression.accept or ...

}
private void visitAbstractSelectClause(AbstractSelectClause expression) {

multipleSelects = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import org.eclipse.persistence.testing.models.jpa.advanced.compositepk.CompositePKTableCreator;
import org.eclipse.persistence.testing.models.jpa.advanced.compositepk.Cubicle;
import org.eclipse.persistence.testing.models.jpa.advanced.compositepk.Scientist;
import org.eclipse.persistence.testing.models.jpa.advanced.compositepk.ScientistPK;
import org.junit.Assert;

import java.util.Arrays;
Expand Down Expand Up @@ -60,7 +61,7 @@ public static Test suite() {
suite.addTest(new JUnitJPQLComplexAggregateTest("testSetup"));

suite.addTest(new JUnitJPQLComplexAggregateTest("complexCountOnJoinedCompositePK"));

suite.addTest(new JUnitJPQLComplexAggregateTest("testCompositePrimaryKey"));
return suite;
}

Expand Down Expand Up @@ -121,4 +122,54 @@ public void complexCountOnJoinedCompositePK() {
}
}

public void testCompositePrimaryKey() {
EntityManager em = createEntityManager();
try {
// Start the transaction
beginTransaction(em);

// Create and set up the Scientist and Cubicle entities
Scientist scientist = new Scientist();
scientist.setFirstName("John");
scientist.setLastName("Doe");

Cubicle cubicle = new Cubicle();
cubicle.setCode("G");
cubicle.setScientist(scientist);

scientist.setCubicle(cubicle);

// Persist the entities
em.persist(cubicle);
em.persist(scientist);
em.flush();

// Execute the query to retrieve the primary keys
List<ScientistPK> keys = em.createQuery(
"SELECT ID(THIS) FROM Scientist WHERE firstName = :firstName ORDER BY idNumber",
ScientistPK.class
)
.setParameter("firstName", "John")
.getResultList();

// Ensure the result size is greater than 0
assertTrue("The result size should be greater than 0", !keys.isEmpty());
Assert.assertEquals("first name should be John", "John", keys.get(0).firstName);
Assert.assertEquals("last name should be John", "Doe", keys.get(0).lastName);
} catch (Exception e) {
// If there's an exception, rollback the transaction
rollbackTransaction(em);
throw e;
} finally {
// Ensure the transaction is rolled back if not committed
if (em.getTransaction().isActive()) {
rollbackTransaction(em);
}
// Close the entity manager
em.close();
}
}



}
Loading