You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jdo-commits@db.apache.org by mb...@apache.org on 2019/04/24 18:20:37 UTC

[db-jdo] branch JDO-652 updated (88f58bc -> 4862e49)

This is an automated email from the ASF dual-hosted git repository.

mbo pushed a change to branch JDO-652
in repository https://gitbox.apache.org/repos/asf/db-jdo.git.


    from 88f58bc  JDO-652: switch to Datanucleus SNAPSHOT version
     new 89f1201  JDO-652: switch to Datanucleus 5.2.2-SNAPSHOT version
     new 4862e49  JDO-652: method testQuery19f in comments

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 tck/pom.xml                                                       | 6 +++---
 tck/src/main/java/org/apache/jdo/tck/query/api/SampleQueries.java | 4 +++-
 2 files changed, 6 insertions(+), 4 deletions(-)


[db-jdo] 01/02: JDO-652: switch to Datanucleus 5.2.2-SNAPSHOT version

Posted by mb...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mbo pushed a commit to branch JDO-652
in repository https://gitbox.apache.org/repos/asf/db-jdo.git

commit 89f1201b17f487c512423c1be59977aee87608aa
Author: Michael Bouschen <mb...@apache.org>
AuthorDate: Wed Apr 24 20:18:11 2019 +0200

    JDO-652: switch to Datanucleus 5.2.2-SNAPSHOT version
---
 tck/pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tck/pom.xml b/tck/pom.xml
index af9ff56..0e1cd50 100644
--- a/tck/pom.xml
+++ b/tck/pom.xml
@@ -143,17 +143,17 @@
                 <dependency>
                     <groupId>org.datanucleus</groupId>
                     <artifactId>datanucleus-core</artifactId>
-                    <version>5.2.1-SNAPSHOT</version>
+                    <version>5.2.2-SNAPSHOT</version>
                 </dependency>
                 <dependency>
                     <groupId>org.datanucleus</groupId>
                     <artifactId>datanucleus-rdbms</artifactId>
-                    <version>5.2.1-SNAPSHOT</version>
+                    <version>5.2.2-SNAPSHOT</version>
                 </dependency>
                 <dependency>
                     <groupId>org.datanucleus</groupId>
                     <artifactId>datanucleus-api-jdo</artifactId>
-                    <version>5.2.1-SNAPSHOT</version>
+                    <version>5.2.2-SNAPSHOT</version>
                 </dependency>
                 <dependency>
                     <groupId>org.datanucleus</groupId>


[db-jdo] 02/02: JDO-652: method testQuery19f in comments

Posted by mb...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mbo pushed a commit to branch JDO-652
in repository https://gitbox.apache.org/repos/asf/db-jdo.git

commit 4862e49dc466ae9921ac52ba7c98596de7f4a286
Author: Michael Bouschen <mb...@apache.org>
AuthorDate: Wed Apr 24 20:18:42 2019 +0200

    JDO-652: method testQuery19f in comments
---
 tck/src/main/java/org/apache/jdo/tck/query/api/SampleQueries.java | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/tck/src/main/java/org/apache/jdo/tck/query/api/SampleQueries.java b/tck/src/main/java/org/apache/jdo/tck/query/api/SampleQueries.java
index fe3071e..2d8c29f 100644
--- a/tck/src/main/java/org/apache/jdo/tck/query/api/SampleQueries.java
+++ b/tck/src/main/java/org/apache/jdo/tck/query/api/SampleQueries.java
@@ -2816,6 +2816,7 @@ public class SampleQueries extends QueryTest {
      * subquery is the collection of employees in the department of the candidate employee
      * and the parameter passed to the subquery is the manager of the candidate employee.
      */
+    /* subquery method not yet implemented by datanucleus
     public void testQuery19f() {
         Transaction tx = pm.currentTransaction();
         try {
@@ -2824,7 +2825,7 @@ public class SampleQueries extends QueryTest {
             try (JDOQLTypedQuery<Employee> q = pm.newJDOQLTypedQuery(Employee.class)) {
                 QEmployee cand = QEmployee.candidate();
                 q.result(false, cand.firstname);
-                JDOQLTypedSubquery<Employee> subquery = q.subquery("e");
+                JDOQLTypedSubquery<Employee> subquery = q.subquery(cand.department.employees, "e");
                 QEmployee candsub = QEmployee.candidate("e");
                 subquery.filter(candsub.manager.eq(cand.manager));
                 q.filter(cand.weeklyhours.gt(subquery.selectUnique(candsub.weeklyhours.avg())));
@@ -2840,6 +2841,7 @@ public class SampleQueries extends QueryTest {
             }
         }
     }
+    */
 
     /**
      * Deleting Multiple Instances.