Skip to content

Commit a604ea8

Browse files
committed
Added condition for embeddable
1 parent b8361df commit a604ea8

File tree

1 file changed

+15
-30
lines changed

1 file changed

+15
-30
lines changed

foundation/org.eclipse.persistence.core/src/main/java/org/eclipse/persistence/internal/jpa/jpql/JPQLFunctionsAbstractBuilder.java

+15-30
Original file line numberDiff line numberDiff line change
@@ -28,23 +28,18 @@
2828
import java.util.List;
2929

3030
/**
31-
* JPQL exclusive ID(), VERSION() functions/expressions are transformed there to
32-
* StateFieldPathExpression.
33-
* It should be used in the future for another JPQL functions/expressions which
34-
* are not available at the DB level.
35-
* E.g. For Entity e with idAttr as a primary key:
36-
* <code>SELECT ID(e) FROM Entity e -> SELECT e.idAttr FROM Entity e</code>
37-
* For Entity e with versionAttr as a version attribute:
38-
* <code>SELECT VERSION(e) FROM Entity e -> SELECT e.versionAttr FROM Entity e</code>
31+
* JPQL exclusive ID(), VERSION() functions/expressions are transformed there to StateFieldPathExpression.
32+
* It should be used in the future for another JPQL functions/expressions which are not available at the DB level.
33+
* E.g. For Entity e with idAttr as a primary key: <code>SELECT ID(e) FROM Entity e -> SELECT e.idAttr FROM Entity e</code>
34+
* For Entity e with versionAttr as a version attribute: <code>SELECT VERSION(e) FROM Entity e -> SELECT e.versionAttr FROM Entity e</code>
3935
*
4036
* @author Radek Felcman
4137
* @since 5.0
4238
*/
4339
public abstract class JPQLFunctionsAbstractBuilder extends EclipseLinkAnonymousExpressionVisitor {
4440

4541
/**
46-
* The {@link JPQLQueryContext} is used to query information about the
47-
* application metadata and
42+
* The {@link JPQLQueryContext} is used to query information about the application metadata and
4843
* cached information.
4944
*/
5045
final JPQLQueryContext queryContext;
@@ -54,27 +49,20 @@ protected JPQLFunctionsAbstractBuilder(JPQLQueryContext queryContext) {
5449
}
5550

5651
/**
57-
* For Entity e with idAttr as a primary key:
58-
* <code>SELECT ID(e) FROM Entity e -> SELECT e.idAttr FROM Entity e</code>
52+
* For Entity e with idAttr as a primary key: <code>SELECT ID(e) FROM Entity e -> SELECT e.idAttr FROM Entity e</code>
5953
*
6054
* @param expression The {@link IdExpression} to visit
6155
*/
6256
@Override
6357
public void visit(IdExpression expression) {
64-
System.out.println("INSIDE VISIT *******");
58+
//Fetch identification variable info
6559
IdentificationVariable identificationVariable = (IdentificationVariable) expression.getExpression();
6660
String variableText = identificationVariable.getText();
6761
String variableName = identificationVariable.getVariableName();
68-
// Get id attribute name
62+
63+
//Get id attribute name
6964
ClassDescriptor descriptor = this.queryContext.getDeclaration(variableName).getDescriptor();
7065
List<DatabaseField> primaryKeyFields = descriptor.getPrimaryKeyFields();
71-
// String idAttributeName = getIdAttributeNameByField(descriptor.getMappings(),
72-
// primaryKeyFields.get(0));
73-
// StateFieldPathExpression stateFieldPathExpression = new
74-
// StateFieldPathExpression(expression.getParent(), variableText + "." +
75-
// idAttributeName);
76-
// expression.setStateFieldPathExpression(stateFieldPathExpression);
77-
// expression.getStateFieldPathExpression().accept(this);
7866
if (!isEmbeddable(descriptor.getMappings())) {
7967
for (DatabaseField primaryKeyField : primaryKeyFields) {
8068
String idAttributeName = getIdAttributeNameByField(descriptor.getMappings(), primaryKeyField);
@@ -98,27 +86,24 @@ public void visit(IdExpression expression) {
9886
}
9987

10088
/**
101-
* For Entity e with versionAttr as a version attribute:
102-
* <code>SELECT VERSION(e) FROM Entity e -> SELECT e.versionAttr FROM Entity e</code>
89+
* For Entity e with versionAttr as a version attribute: <code>SELECT VERSION(e) FROM Entity e -> SELECT e.versionAttr FROM Entity e</code>
10390
*
10491
* @param expression The {@link VersionExpression} to visit
10592
*/
10693
@Override
10794
public void visit(VersionExpression expression) {
108-
// Fetch identification variable info
95+
//Fetch identification variable info
10996
IdentificationVariable identificationVariable = (IdentificationVariable) expression.getExpression();
11097
String variableText = identificationVariable.getText();
11198
String variableName = identificationVariable.getVariableName();
11299

113-
// Get version attribute name
100+
//Get version attribute name
114101
ClassDescriptor descriptor = this.queryContext.getDeclaration(variableName).getDescriptor();
115-
String versionAttributeName = ((VersionLockingPolicy) descriptor.getOptimisticLockingPolicy())
116-
.getVersionMapping().getAttributeName();
117-
StateFieldPathExpression stateFieldPathExpression = new StateFieldPathExpression(expression.getParent(),
118-
variableText + "." + versionAttributeName);
102+
String versionAttributeName = ((VersionLockingPolicy) descriptor.getOptimisticLockingPolicy()).getVersionMapping().getAttributeName();
103+
StateFieldPathExpression stateFieldPathExpression = new StateFieldPathExpression(expression.getParent(), variableText + "." + versionAttributeName);
119104
expression.setStateFieldPathExpression(stateFieldPathExpression);
120105

121-
// Continue with created StateFieldPathExpression
106+
//Continue with created StateFieldPathExpression
122107
expression.getStateFieldPathExpression().accept(this);
123108
}
124109

0 commit comments

Comments
 (0)