You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: foundation/org.eclipse.persistence.core/src/main/java/org/eclipse/persistence/internal/jpa/jpql/JPQLFunctionsAbstractBuilder.java
+15-30
Original file line number
Diff line number
Diff line change
@@ -28,23 +28,18 @@
28
28
importjava.util.List;
29
29
30
30
/**
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>
0 commit comments