diff --git a/tck/src/main/java/org/apache/jdo/tck/api/fetchgroup/FetchGroupTest.java b/tck/src/main/java/org/apache/jdo/tck/api/fetchgroup/FetchGroupTest.java index ccb88201e..2133d60e4 100644 --- a/tck/src/main/java/org/apache/jdo/tck/api/fetchgroup/FetchGroupTest.java +++ b/tck/src/main/java/org/apache/jdo/tck/api/fetchgroup/FetchGroupTest.java @@ -93,7 +93,8 @@ public class FetchGroupTest extends JDO_Test { "middlename", "birthdate", "address", - "phoneNumbers" + "phoneNumbers", + "languages" }; /** Address address is of type Address and is a relationship */ protected final String[] relationshipMembers = @@ -112,9 +113,11 @@ public class FetchGroupTest extends JDO_Test { "hradvisees", "address" }; - /** Map phoneNumbers is not a relationship but is multivalued */ + /** Map phoneNumbers and set languages are not relationships but are multivalued */ protected final String[] multivaluedMembers = - new String[] {"reviewedProjects", "projects", "team", "hradvisees", "phoneNumbers"}; + new String[] { + "reviewedProjects", "projects", "team", "hradvisees", "phoneNumbers", "languages" + }; protected final String[] allButMultivaluedMembers = new String[] { @@ -336,16 +339,21 @@ public void testRemoveMembers() { Set expectedSet = new HashSet<>(); expectedSet.addAll(Arrays.asList(basicMembers)); expectedSet.add("phoneNumbers"); + expectedSet.add("languages"); Assertions.assertEquals( expectedSet, members, - "FetchGroup should contain basic members " + "plus address plus phoneNumbers.\n"); + "FetchGroup should contain basic members " + + "plus address plus phoneNumbers and languages.\n"); fg.removeMembers(basicMembers); members = fg.getMembers(); expectedSet = new HashSet<>(); expectedSet.add("phoneNumbers"); + expectedSet.add("languages"); Assertions.assertEquals( - expectedSet, members, "FetchGroup should contain address plus phoneNumbers.\n"); + expectedSet, + members, + "FetchGroup should contain address plus phoneNumbers and languages.\n"); } @SuppressWarnings("unchecked") diff --git a/tck/src/main/java/org/apache/jdo/tck/lifecycle/PMsCanSharePCClassesButNotPCInstances.java b/tck/src/main/java/org/apache/jdo/tck/lifecycle/PMsCanSharePCClassesButNotPCInstances.java index a5328b954..1cfd8045c 100644 --- a/tck/src/main/java/org/apache/jdo/tck/lifecycle/PMsCanSharePCClassesButNotPCInstances.java +++ b/tck/src/main/java/org/apache/jdo/tck/lifecycle/PMsCanSharePCClassesButNotPCInstances.java @@ -110,7 +110,7 @@ protected void insertObjects(boolean sharedPC) { while (!attemptsComplete()) { try { - Thread.sleep(100); + Thread.sleep(200); } catch (InterruptedException ex) { logger.debug("interrupted while waiting for threads to insert"); } diff --git a/tck/src/main/java/org/apache/jdo/tck/pc/company/IPerson.java b/tck/src/main/java/org/apache/jdo/tck/pc/company/IPerson.java index 278d5ebc9..b3f8a7124 100644 --- a/tck/src/main/java/org/apache/jdo/tck/pc/company/IPerson.java +++ b/tck/src/main/java/org/apache/jdo/tck/pc/company/IPerson.java @@ -19,6 +19,7 @@ import java.util.Date; import java.util.Map; +import java.util.Set; /** * This interface represents the persistent state of Person. Javadoc was deliberately omitted @@ -40,6 +41,8 @@ public interface IPerson { Map getPhoneNumbers(); + Set getLanguages(); + void setPersonid(long personid); void setLastname(String lastname); @@ -53,4 +56,6 @@ public interface IPerson { void setBirthdate(Date birthdate); void setPhoneNumbers(Map phoneNumbers); + + void setLanguages(Set languages); } diff --git a/tck/src/main/java/org/apache/jdo/tck/pc/company/PIPerson.java b/tck/src/main/java/org/apache/jdo/tck/pc/company/PIPerson.java index a8e0fca72..b24452356 100644 --- a/tck/src/main/java/org/apache/jdo/tck/pc/company/PIPerson.java +++ b/tck/src/main/java/org/apache/jdo/tck/pc/company/PIPerson.java @@ -19,6 +19,7 @@ import java.util.Date; import java.util.Map; +import java.util.Set; /** * This interface represents the persistent state of Person. Javadoc was deliberately omitted @@ -40,6 +41,8 @@ public interface PIPerson extends IPerson { Map getPhoneNumbers(); + Set getLanguages(); + void setPersonid(long personid); void setLastname(String lastname); @@ -53,4 +56,6 @@ public interface PIPerson extends IPerson { void setBirthdate(Date birthdate); void setPhoneNumbers(Map phoneNumbers); + + void setLanguages(Set languages); } diff --git a/tck/src/main/java/org/apache/jdo/tck/pc/company/Person.java b/tck/src/main/java/org/apache/jdo/tck/pc/company/Person.java index 903696e98..7f3ee0018 100644 --- a/tck/src/main/java/org/apache/jdo/tck/pc/company/Person.java +++ b/tck/src/main/java/org/apache/jdo/tck/pc/company/Person.java @@ -22,7 +22,9 @@ import java.util.Comparator; import java.util.Date; import java.util.HashMap; +import java.util.HashSet; import java.util.Map; +import java.util.Set; import javax.jdo.annotations.PersistenceCapable; import org.apache.jdo.tck.util.DeepEquality; import org.apache.jdo.tck.util.EqualityHelper; @@ -46,6 +48,8 @@ public class Person // to phone numbers specified as String private Map phoneNumbers = new HashMap<>(); + private Set languages = new HashSet<>(); + /** This is the JDO-required no-args constructor. */ protected Person() {} @@ -261,6 +265,24 @@ public void setPhoneNumbers(Map phoneNumbers) { this.phoneNumbers = (phoneNumbers != null) ? new HashMap<>(phoneNumbers) : null; } + /** + * Get the set of languages as an unmodifiable set. + * + * @return The set of languages, as an unmodifiable set. + */ + public Set getLanguages() { + return Collections.unmodifiableSet(languages); + } + + /** + * Set the languages set to be in this person. + * + * @param languages The set of languages for this person. + */ + public void setLanguages(Set languages) { + this.languages = new HashSet(languages); + } + /** * Returns a String representation of a Person object. * @@ -282,6 +304,7 @@ protected String getFieldRepr() { rc.append(", ").append(firstname); rc.append(", born ").append(JDOCustomDateEditor.getDateRepr(birthdate)); rc.append(", phone ").append(phoneNumbers); + rc.append(", languages ").append(languages); return rc.toString(); } @@ -304,7 +327,8 @@ public boolean deepCompareFields(Object other, EqualityHelper helper) { & helper.equals(middlename, otherPerson.getMiddlename(), where + ".middlename") & helper.equals(birthdate, otherPerson.getBirthdate(), where + ".birthdate") & helper.deepEquals(address, otherPerson.getAddress(), where + ".address") - & helper.deepEquals(phoneNumbers, otherPerson.getPhoneNumbers(), where + ".phoneNumbers"); + & helper.deepEquals(phoneNumbers, otherPerson.getPhoneNumbers(), where + ".phoneNumbers") + & helper.deepEquals(languages, otherPerson.getLanguages(), where + ".languages"); } /** diff --git a/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedFC/FCAppPerson.java b/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedFC/FCAppPerson.java index 40294e848..e4b7f889a 100644 --- a/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedFC/FCAppPerson.java +++ b/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedFC/FCAppPerson.java @@ -22,8 +22,11 @@ import java.util.Comparator; import java.util.Date; import java.util.HashMap; +import java.util.HashSet; import java.util.Map; +import java.util.Set; import javax.jdo.annotations.Column; +import javax.jdo.annotations.Element; import javax.jdo.annotations.Embedded; import javax.jdo.annotations.Inheritance; import javax.jdo.annotations.InheritanceStrategy; @@ -86,6 +89,11 @@ public class FCAppPerson @Value(types = java.lang.String.class, column = "PHONENO") private Map phoneNumbers = new HashMap<>(); + @Persistent(table = "employee_languages") + @Join(column = "EMPID") + @Element(types = java.lang.String.class, column = "LANGUAGE") + private Set languages = new HashSet<>(); + /** This is the JDO-required no-args constructor. */ protected FCAppPerson() {} @@ -301,6 +309,24 @@ public void setPhoneNumbers(Map phoneNumbers) { this.phoneNumbers = (phoneNumbers != null) ? new HashMap<>(phoneNumbers) : null; } + /** + * Get the map of languages as an unmodifiable Set. + * + * @return The set of languages, as an unmodifiable set. + */ + public Set getLanguages() { + return Collections.unmodifiableSet(languages); + } + + /** + * Set the languages set to be in this person. + * + * @param languages The map of phoneNumbers for this person. + */ + public void setLanguages(Set languages) { + this.languages = new HashSet(languages); + } + /** * Returns a String representation of a FCAppPerson object. * diff --git a/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedFC/FCDSPerson.java b/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedFC/FCDSPerson.java index 232835c24..b071a1e0c 100644 --- a/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedFC/FCDSPerson.java +++ b/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedFC/FCDSPerson.java @@ -22,8 +22,11 @@ import java.util.Comparator; import java.util.Date; import java.util.HashMap; +import java.util.HashSet; import java.util.Map; +import java.util.Set; import javax.jdo.annotations.Column; +import javax.jdo.annotations.Element; import javax.jdo.annotations.Embedded; import javax.jdo.annotations.Join; import javax.jdo.annotations.Key; @@ -82,6 +85,11 @@ public class FCDSPerson @Value(types = java.lang.String.class, column = "PHONENO") private Map phoneNumbers = new HashMap<>(); + @Persistent(table = "employee_languages") + @Join(column = "EMPID") + @Element(types = java.lang.String.class, column = "LANGUAGE") + private Set languages = new HashSet<>(); + /** This is the JDO-required no-args constructor. */ protected FCDSPerson() {} @@ -297,6 +305,24 @@ public void setPhoneNumbers(Map phoneNumbers) { this.phoneNumbers = (phoneNumbers != null) ? new HashMap<>(phoneNumbers) : null; } + /** + * Get the map of languages as an unmodifiable Set. + * + * @return The set of languages, as an unmodifiable set. + */ + public Set getLanguages() { + return Collections.unmodifiableSet(languages); + } + + /** + * Set the languages set to be in this person. + * + * @param languages The map of phoneNumbers for this person. + */ + public void setLanguages(Set languages) { + this.languages = new HashSet(languages); + } + /** * Returns a String representation of a FCDSPerson object. * @@ -318,6 +344,7 @@ protected String getFieldRepr() { rc.append(", ").append(firstname); rc.append(", born ").append(JDOCustomDateEditor.getDateRepr(birthdate)); rc.append(", phone ").append(phoneNumbers); + rc.append(", languages ").append(languages); return rc.toString(); } @@ -340,7 +367,8 @@ public boolean deepCompareFields(Object other, EqualityHelper helper) { & helper.equals(middlename, otherPerson.getMiddlename(), where + ".middlename") & helper.equals(birthdate, otherPerson.getBirthdate(), where + ".birthdate") & helper.deepEquals(address, otherPerson.getAddress(), where + ".address") - & helper.deepEquals(phoneNumbers, otherPerson.getPhoneNumbers(), where + ".phoneNumbers"); + & helper.deepEquals(phoneNumbers, otherPerson.getPhoneNumbers(), where + ".phoneNumbers") + & helper.deepEquals(languages, otherPerson.getLanguages(), where + ".languages"); } /** diff --git a/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedJPA/JPAAppPerson.java b/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedJPA/JPAAppPerson.java index 004154b22..7b604d10b 100644 --- a/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedJPA/JPAAppPerson.java +++ b/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedJPA/JPAAppPerson.java @@ -18,17 +18,22 @@ package org.apache.jdo.tck.pc.companyAnnotatedJPA; import java.io.Serializable; +import java.util.Collections; import java.util.Comparator; import java.util.Date; import java.util.HashMap; +import java.util.HashSet; import java.util.Map; +import java.util.Set; import javax.persistence.AttributeOverride; import javax.persistence.AttributeOverrides; import javax.persistence.Basic; import javax.persistence.CascadeType; +import javax.persistence.CollectionTable; import javax.persistence.Column; import javax.persistence.DiscriminatorColumn; import javax.persistence.DiscriminatorType; +import javax.persistence.ElementCollection; import javax.persistence.Embedded; import javax.persistence.Entity; import javax.persistence.FetchType; @@ -36,6 +41,7 @@ import javax.persistence.IdClass; import javax.persistence.Inheritance; import javax.persistence.InheritanceType; +import javax.persistence.JoinColumn; import javax.persistence.MapKey; import javax.persistence.OneToMany; import javax.persistence.Table; @@ -90,6 +96,10 @@ public class JPAAppPerson @MapKey(name = "type") private Map phoneNumbers = new HashMap<>(); + @ElementCollection + @CollectionTable(name = "employee_languages", joinColumns = @JoinColumn(name = "EMPID")) + private Set languages = new HashSet<>(); + /** This is the JDO-required no-args constructor. */ protected JPAAppPerson() {} @@ -305,6 +315,24 @@ public void setPhoneNumbers(Map phoneNumbers) { this.phoneNumbers = (phoneNumbers != null) ? convertString2Phone(phoneNumbers) : null; } + /** + * Get the map of languages as an unmodifiable Set. + * + * @return The set of languages, as an unmodifiable set. + */ + public Set getLanguages() { + return Collections.unmodifiableSet(languages); + } + + /** + * Set the languages set to be in this person. + * + * @param languages The map of phoneNumbers for this person. + */ + public void setLanguages(Set languages) { + this.languages = new HashSet(languages); + } + /** * Converts HashMap of String, String to HashMap of String, JPAAppPhoneNmber * @@ -360,6 +388,7 @@ protected String getFieldRepr() { rc.append(", ").append(firstname); rc.append(", born ").append(JDOCustomDateEditor.getDateRepr(birthdate)); rc.append(", phone ").append(convertPhone2String(phoneNumbers)); + rc.append(", languages ").append(languages); return rc.toString(); } @@ -385,7 +414,8 @@ public boolean deepCompareFields(Object other, EqualityHelper helper) { & helper.deepEquals( convertPhone2String(phoneNumbers), otherPerson.getPhoneNumbers(), - where + ".phoneNumbers"); + where + ".phoneNumbers") + & helper.deepEquals(languages, otherPerson.getLanguages(), where + ".languages"); } /** diff --git a/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedPC/PCAppPerson.java b/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedPC/PCAppPerson.java index f7f6c1fdf..f873d9f09 100644 --- a/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedPC/PCAppPerson.java +++ b/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedPC/PCAppPerson.java @@ -18,10 +18,13 @@ package org.apache.jdo.tck.pc.companyAnnotatedPC; import java.io.Serializable; +import java.util.Collections; import java.util.Comparator; import java.util.Date; import java.util.HashMap; +import java.util.HashSet; import java.util.Map; +import java.util.Set; import javax.jdo.annotations.Column; import javax.jdo.annotations.Discriminator; import javax.jdo.annotations.DiscriminatorStrategy; @@ -62,6 +65,7 @@ public class PCAppPerson @NotPersistent() private Date _birthdate; @NotPersistent() private PCAppAddress _address; @NotPersistent() private Map _phoneNumbers = new HashMap<>(); + @NotPersistent() private Set _languages = new HashSet<>(); /** This is the JDO-required no-args constructor. */ protected PCAppPerson() {} @@ -294,6 +298,24 @@ public void setPhoneNumbers(Map phoneNumbers) { this._phoneNumbers = (phoneNumbers != null) ? new HashMap<>(phoneNumbers) : null; } + /** + * Get the map of languages as an unmodifiable Set. + * + * @return The set of languages, as an unmodifiable set. + */ + public Set getLanguages() { + return Collections.unmodifiableSet(_languages); + } + + /** + * Set the languages set to be in this person. + * + * @param languages The set of languages for this person. + */ + public void setLanguages(Set languages) { + this._languages = new HashSet(languages); + } + /** * Returns a String representation of a PCAppPerson object. * diff --git a/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedPC/PCDSPerson.java b/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedPC/PCDSPerson.java index 5298d8fce..5e52c852e 100644 --- a/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedPC/PCDSPerson.java +++ b/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedPC/PCDSPerson.java @@ -18,10 +18,13 @@ package org.apache.jdo.tck.pc.companyAnnotatedPC; import java.io.Serializable; +import java.util.Collections; import java.util.Comparator; import java.util.Date; import java.util.HashMap; +import java.util.HashSet; import java.util.Map; +import java.util.Set; import javax.jdo.annotations.Column; import javax.jdo.annotations.DatastoreIdentity; import javax.jdo.annotations.Discriminator; @@ -63,6 +66,7 @@ public class PCDSPerson @NotPersistent() private Date _birthdate; @NotPersistent() private PCDSAddress _address; @NotPersistent() private Map _phoneNumbers = new HashMap<>(); + @NotPersistent() private Set _languages = new HashSet<>(); /** This is the JDO-required no-args constructor. */ protected PCDSPerson() {} @@ -294,6 +298,24 @@ public void setPhoneNumbers(Map phoneNumbers) { this._phoneNumbers = (phoneNumbers != null) ? new HashMap<>(phoneNumbers) : null; } + /** + * Get the map of languages as an unmodifiable Set. + * + * @return The set of languages, as an unmodifiable set. + */ + public Set getLanguages() { + return Collections.unmodifiableSet(_languages); + } + + /** + * Set the languages set to be in this person. + * + * @param languages The map of phoneNumbers for this person. + */ + public void setLanguages(Set languages) { + this._languages = new HashSet(languages); + } + /** * Returns a String representation of a PCDSPerson object. * diff --git a/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedPI/PIAppPerson.java b/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedPI/PIAppPerson.java index 952bb678f..a7906286b 100644 --- a/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedPI/PIAppPerson.java +++ b/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedPI/PIAppPerson.java @@ -19,9 +19,11 @@ import java.util.Date; import java.util.Map; +import java.util.Set; import javax.jdo.annotations.Column; import javax.jdo.annotations.Discriminator; import javax.jdo.annotations.DiscriminatorStrategy; +import javax.jdo.annotations.Element; import javax.jdo.annotations.Embedded; import javax.jdo.annotations.IdentityType; import javax.jdo.annotations.Inheritance; @@ -85,6 +87,11 @@ public interface PIAppPerson extends IPerson { @Value(types = java.lang.String.class, column = "PHONENO") Map getPhoneNumbers(); + @Persistent(persistenceModifier = PersistenceModifier.PERSISTENT, table = "employee_languages") + @Join(column = "EMPID") + @Element(types = java.lang.String.class, column = "LANGUAGE") + Set getLanguages(); + void setPersonid(long personid); void setLastname(String lastname); diff --git a/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedPI/PIDSPerson.java b/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedPI/PIDSPerson.java index 874ff845a..fd8fec254 100644 --- a/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedPI/PIDSPerson.java +++ b/tck/src/main/java/org/apache/jdo/tck/pc/companyAnnotatedPI/PIDSPerson.java @@ -19,10 +19,12 @@ import java.util.Date; import java.util.Map; +import java.util.Set; import javax.jdo.annotations.Column; import javax.jdo.annotations.DatastoreIdentity; import javax.jdo.annotations.Discriminator; import javax.jdo.annotations.DiscriminatorStrategy; +import javax.jdo.annotations.Element; import javax.jdo.annotations.Embedded; import javax.jdo.annotations.IdGeneratorStrategy; import javax.jdo.annotations.Inheritance; @@ -83,6 +85,11 @@ public interface PIDSPerson extends IPerson { @Value(types = java.lang.String.class, column = "PHONENO") Map getPhoneNumbers(); + @Persistent(table = "employee_languages") + @Join(column = "EMPID") + @Element(types = java.lang.String.class, column = "LANGUAGE") + Set getLanguages(); + void setPersonid(long personid); void setLastname(String lastname); diff --git a/tck/src/main/java/org/apache/jdo/tck/query/api/SampleModifyQueries.java b/tck/src/main/java/org/apache/jdo/tck/query/api/SampleModifyQueries.java index 4f37ffa57..8e9b6a099 100644 --- a/tck/src/main/java/org/apache/jdo/tck/query/api/SampleModifyQueries.java +++ b/tck/src/main/java/org/apache/jdo/tck/query/api/SampleModifyQueries.java @@ -46,7 +46,7 @@ public class SampleModifyQueries extends QueryTest { *

This query deletes all Employees who make more than the parameter salary. */ @Test - public void testQuery20() { + public void testQuery23() { Transaction tx = pm.currentTransaction(); try { tx.begin(); diff --git a/tck/src/main/java/org/apache/jdo/tck/query/api/SampleReadQueries.java b/tck/src/main/java/org/apache/jdo/tck/query/api/SampleReadQueries.java index 297b5378c..d46e7e419 100644 --- a/tck/src/main/java/org/apache/jdo/tck/query/api/SampleReadQueries.java +++ b/tck/src/main/java/org/apache/jdo/tck/query/api/SampleReadQueries.java @@ -27,6 +27,7 @@ import javax.jdo.Query; import javax.jdo.Transaction; import javax.jdo.query.CollectionExpression; +import javax.jdo.query.Expression; import javax.jdo.query.NumericExpression; import javax.jdo.query.StringExpression; import org.apache.jdo.tck.pc.company.CompanyModelReader; @@ -53,14 +54,18 @@ * Assertion Description: This test class runs the example read queries from the JDO * specification. * - *

There are up to six test methods per test case: testQueryxxa: runtime constructed JDO query - * using execute to run the query testQueryxxb: runtime constructed JDO query using - * setNamedParameters to specify the parameter values and - * executeList/executeResultList/executeResultUnique to run the query testQueryxxc: runtime - * constructed JDO query using setParameters to specify the parameter values and - * executeList/executeResultList/executeResultUnique to run the query testQueryxxd: single string - * version of the JDO query testQueryxxe: named query version of the JDO query testQueryxxf: - * JDOQLTypedQuery version + *

There are up to six test methods per test case: + * + *

    + *
  • testQueryxxa: runtime constructed JDO query using execute to run the query + *
  • testQueryxxb: runtime constructed JDO query using setNamedParameters to specify the + * parameter values and executeList/executeResultList/executeResultUnique to run the query + *
  • testQueryxxc: runtime constructed JDO query using setParameters to specify the parameter + * values and executeList/executeResultList/executeResultUnique to run the query + *
  • testQueryxxd: single string version of the JDO query + *
  • testQueryxxe: named query version of the JDO query + *
  • testQueryxxf: JDOQLTypedQuery version + *
*/ @TestInstance(TestInstance.Lifecycle.PER_CLASS) public class SampleReadQueries extends QueryTest { @@ -146,6 +151,18 @@ public class SampleReadQueries extends QueryTest { + "where this.weeklyhours > " + " (select AVG(e.weeklyhours) from this.department.employees e where e.manager == this.manager)"; + private static final String SINGLE_STRING_QUERY_20 = + "select from org.apache.jdo.tck.pc.company.FullTimeEmployee " + + "where languages.contains(lang) && lang == 'German' variables String lang"; + + private static final String SINGLE_STRING_QUERY_21 = + "select from org.apache.jdo.tck.pc.company.FullTimeEmployee " + + "where phoneNumbers.containsKey(key) && key == 'home' variables String key"; + + private static final String SINGLE_STRING_QUERY_22 = + "select from org.apache.jdo.tck.pc.company.FullTimeEmployee " + + "where phoneNumbers.containsValue(value) && value == '1111' variables String value"; + /** * Basic query. * @@ -3031,6 +3048,450 @@ public void testQuery19f() { } } + /** + * Navigation through multi-valued field. + * + *

This query selects all FullTimeEmployee instances from the candidate collection speaking + * German (i.e. the language set includes the string "German"). + */ + @SuppressWarnings("unchecked") + @Test + @Execution(ExecutionMode.CONCURRENT) + public void testQuery20a() { + PersistenceManager pm = getPMF().getPersistenceManager(); + Transaction tx = pm.currentTransaction(); + try { + tx.begin(); + List expected = + getTransientCompanyModelInstancesAsList(FullTimeEmployee.class, "emp1", "emp5"); + try (Query q = + pm.newQuery(FullTimeEmployee.class, "languages.contains(lang) && lang == 'German'")) { + q.declareVariables("String lang"); + List emps = (List) q.execute(); + checkQueryResultWithoutOrder(ASSERTION_FAILED, SINGLE_STRING_QUERY_20, emps, expected); + } catch (Exception ex) { + fail(ASSERTION_FAILED, ex.getLocalizedMessage()); + } + tx.commit(); + } finally { + cleanupPM(pm); + } + } + + /** + * Navigation through multi-valued field. + * + *

This query selects all FullTimeEmployee instances from the candidate collection speaking + * German (i.e. the language set includes the string "German"). + */ + @Test + @Execution(ExecutionMode.CONCURRENT) + public void testQuery20b() { + PersistenceManager pm = getPMF().getPersistenceManager(); + Transaction tx = pm.currentTransaction(); + try { + tx.begin(); + List expected = + getTransientCompanyModelInstancesAsList(FullTimeEmployee.class, "emp1", "emp5"); + try (Query q = + pm.newQuery(FullTimeEmployee.class, "languages.contains(lang) && lang == 'German'")) { + q.declareVariables("String lang"); + List emps = q.executeList(); + checkQueryResultWithoutOrder(ASSERTION_FAILED, SINGLE_STRING_QUERY_20, emps, expected); + } catch (Exception ex) { + fail(ASSERTION_FAILED, ex.getLocalizedMessage()); + } + tx.commit(); + } finally { + cleanupPM(pm); + } + } + + /** + * Navigation through multi-valued field. + * + *

This query selects all FullTimeEmployee instances from the candidate collection speaking + * German (i.e. the language set includes the string "German"). + */ + @Test + @Execution(ExecutionMode.CONCURRENT) + public void testQuery20c() { + PersistenceManager pm = getPMF().getPersistenceManager(); + Transaction tx = pm.currentTransaction(); + try { + tx.begin(); + List expected = + getTransientCompanyModelInstancesAsList(FullTimeEmployee.class, "emp1", "emp5"); + try (Query q = + pm.newQuery(FullTimeEmployee.class, "languages.contains(lang) && lang == 'German'")) { + q.declareVariables("String lang"); + List emps = q.executeList(); + checkQueryResultWithoutOrder(ASSERTION_FAILED, SINGLE_STRING_QUERY_20, emps, expected); + } catch (Exception ex) { + fail(ASSERTION_FAILED, ex.getLocalizedMessage()); + } + tx.commit(); + } finally { + cleanupPM(pm); + } + } + + /** + * Navigation through multi-valued field. + * + *

This query selects all FullTimeEmployee instances from the candidate collection speaking + * German (i.e. the language set includes the string "German"). + */ + @SuppressWarnings("unchecked") + @Test + @Execution(ExecutionMode.CONCURRENT) + public void testQuery20d() { + PersistenceManager pm = getPMF().getPersistenceManager(); + Transaction tx = pm.currentTransaction(); + try { + tx.begin(); + List expected = + getTransientCompanyModelInstancesAsList(FullTimeEmployee.class, "emp1", "emp5"); + try (Query q = pm.newQuery(SINGLE_STRING_QUERY_20)) { + List emps = (List) q.execute(); + checkQueryResultWithoutOrder(ASSERTION_FAILED, SINGLE_STRING_QUERY_20, emps, expected); + } catch (Exception ex) { + fail(ASSERTION_FAILED, ex.getLocalizedMessage()); + } + tx.commit(); + } finally { + cleanupPM(pm); + } + } + + /** + * Navigation through multi-valued field. + * + *

This query selects all FullTimeEmployee instances from the candidate collection speaking + * German (i.e. the language set includes the string "German"). + */ + @SuppressWarnings("unchecked") + @Test + @Execution(ExecutionMode.CONCURRENT) + public void testQuery20f() { + PersistenceManager pm = getPMF().getPersistenceManager(); + Transaction tx = pm.currentTransaction(); + try { + tx.begin(); + List expected = + getTransientCompanyModelInstancesAsList(FullTimeEmployee.class, "emp1", "emp5"); + try (JDOQLTypedQuery q = pm.newJDOQLTypedQuery(FullTimeEmployee.class)) { + QFullTimeEmployee cand = QFullTimeEmployee.candidate("this"); + Expression lang = q.variable("lang", String.class); + q.filter(cand.languages.contains(lang).and(lang.eq("German"))); + List emps = q.executeList(); + checkQueryResultWithoutOrder(ASSERTION_FAILED, SINGLE_STRING_QUERY_20, emps, expected); + } catch (Exception ex) { + fail(ASSERTION_FAILED, ex.getLocalizedMessage()); + } + tx.commit(); + } finally { + cleanupPM(pm); + } + } + + /** + * Navigation through multi-valued field. + * + *

This query selects all FullTimeEmployee instances from the candidate collection having a + * home phone number (i.e. the phoneNumbers map includes an entry with key "home"). + */ + @SuppressWarnings("unchecked") + @Test + @Execution(ExecutionMode.CONCURRENT) + public void testQuery21a() { + PersistenceManager pm = getPMF().getPersistenceManager(); + Transaction tx = pm.currentTransaction(); + try { + tx.begin(); + List expected = + getTransientCompanyModelInstancesAsList(FullTimeEmployee.class, "emp1", "emp2", "emp5"); + try (Query q = + pm.newQuery(FullTimeEmployee.class, "phoneNumbers.containsKey(key) && key == 'home'")) { + q.declareVariables("String key"); + List emps = (List) q.execute(); + checkQueryResultWithoutOrder(ASSERTION_FAILED, SINGLE_STRING_QUERY_21, emps, expected); + } catch (Exception ex) { + fail(ASSERTION_FAILED, ex.getLocalizedMessage()); + } + tx.commit(); + } finally { + cleanupPM(pm); + } + } + + /** + * Navigation through multi-valued field. + * + *

This query selects all FullTimeEmployee instances from the candidate collection having a + * home phone number (i.e. the phoneNumbers map includes an entry with key "home"). + */ + @Test + @Execution(ExecutionMode.CONCURRENT) + public void testQuery21b() { + PersistenceManager pm = getPMF().getPersistenceManager(); + Transaction tx = pm.currentTransaction(); + try { + tx.begin(); + List expected = + getTransientCompanyModelInstancesAsList(FullTimeEmployee.class, "emp1", "emp2", "emp5"); + try (Query q = + pm.newQuery(FullTimeEmployee.class, "phoneNumbers.containsKey(key) && key == 'home'")) { + q.declareVariables("String key"); + List emps = q.executeList(); + checkQueryResultWithoutOrder(ASSERTION_FAILED, SINGLE_STRING_QUERY_21, emps, expected); + } catch (Exception ex) { + fail(ASSERTION_FAILED, ex.getLocalizedMessage()); + } + tx.commit(); + } finally { + cleanupPM(pm); + } + } + + /** + * Navigation through multi-valued field. + * + *

This query selects all FullTimeEmployee instances from the candidate collection having a + * home phone number (i.e. the phoneNumbers map includes an entry with key "home"). + */ + @Test + @Execution(ExecutionMode.CONCURRENT) + public void testQuery21c() { + PersistenceManager pm = getPMF().getPersistenceManager(); + Transaction tx = pm.currentTransaction(); + try { + tx.begin(); + List expected = + getTransientCompanyModelInstancesAsList(FullTimeEmployee.class, "emp1", "emp2", "emp5"); + try (Query q = + pm.newQuery(FullTimeEmployee.class, "phoneNumbers.containsKey(key) && key == 'home'")) { + q.declareVariables("String key"); + List emps = q.executeList(); + checkQueryResultWithoutOrder(ASSERTION_FAILED, SINGLE_STRING_QUERY_21, emps, expected); + } catch (Exception ex) { + fail(ASSERTION_FAILED, ex.getLocalizedMessage()); + } + tx.commit(); + } finally { + cleanupPM(pm); + } + } + + /** + * Navigation through multi-valued field. + * + *

This query selects all FullTimeEmployee instances from the candidate collection having a + * home phone number (i.e. the phoneNumbers map includes an entry with key "home"). + */ + @SuppressWarnings("unchecked") + @Test + @Execution(ExecutionMode.CONCURRENT) + public void testQuery21d() { + PersistenceManager pm = getPMF().getPersistenceManager(); + Transaction tx = pm.currentTransaction(); + try { + tx.begin(); + List expected = + getTransientCompanyModelInstancesAsList(FullTimeEmployee.class, "emp1", "emp2", "emp5"); + try (Query q = pm.newQuery(SINGLE_STRING_QUERY_21)) { + List emps = (List) q.execute(); + checkQueryResultWithoutOrder(ASSERTION_FAILED, SINGLE_STRING_QUERY_21, emps, expected); + } catch (Exception ex) { + fail(ASSERTION_FAILED, ex.getLocalizedMessage()); + } + tx.commit(); + } finally { + cleanupPM(pm); + } + } + + /** + * Navigation through multi-valued field. + * + *

This query selects all FullTimeEmployee instances from the candidate collection having a + * home phone number (i.e. the phoneNumbers map includes an entry with key "home"). + */ + @SuppressWarnings("unchecked") + @Test + @Execution(ExecutionMode.CONCURRENT) + public void testQuery21f() { + PersistenceManager pm = getPMF().getPersistenceManager(); + Transaction tx = pm.currentTransaction(); + try { + tx.begin(); + List expected = + getTransientCompanyModelInstancesAsList(FullTimeEmployee.class, "emp1", "emp2", "emp5"); + try (JDOQLTypedQuery q = pm.newJDOQLTypedQuery(FullTimeEmployee.class)) { + QFullTimeEmployee cand = QFullTimeEmployee.candidate("this"); + Expression key = q.variable("key", String.class); + q.filter(cand.phoneNumbers.containsKey(key).and(key.eq("home"))); + List emps = q.executeList(); + checkQueryResultWithoutOrder(ASSERTION_FAILED, SINGLE_STRING_QUERY_21, emps, expected); + } catch (Exception ex) { + fail(ASSERTION_FAILED, ex.getLocalizedMessage()); + } + tx.commit(); + } finally { + cleanupPM(pm); + } + } + + /** + * Navigation through multi-valued field. + * + *

This query selects all FullTimeEmployee instances from the candidate collection having a + * phone number "1111" (i.e. the phoneNumbers map includes an entry with value "1111"). + */ + @SuppressWarnings("unchecked") + @Test + @Execution(ExecutionMode.CONCURRENT) + public void testQuery22a() { + PersistenceManager pm = getPMF().getPersistenceManager(); + Transaction tx = pm.currentTransaction(); + try { + tx.begin(); + List expected = + getTransientCompanyModelInstancesAsList(FullTimeEmployee.class, "emp1"); + try (Query q = + pm.newQuery( + FullTimeEmployee.class, "phoneNumbers.containsValue(value) && value == '1111'")) { + q.declareVariables("String value"); + List emps = (List) q.execute(); + checkQueryResultWithoutOrder(ASSERTION_FAILED, SINGLE_STRING_QUERY_22, emps, expected); + } catch (Exception ex) { + fail(ASSERTION_FAILED, ex.getLocalizedMessage()); + } + tx.commit(); + } finally { + cleanupPM(pm); + } + } + + /** + * Navigation through multi-valued field. + * + *

This query selects all FullTimeEmployee instances from the candidate collection having a + * phone number "1111" (i.e. the phoneNumbers map includes an entry with value "1111"). + */ + @Test + @Execution(ExecutionMode.CONCURRENT) + public void testQuery22b() { + PersistenceManager pm = getPMF().getPersistenceManager(); + Transaction tx = pm.currentTransaction(); + try { + tx.begin(); + List expected = + getTransientCompanyModelInstancesAsList(FullTimeEmployee.class, "emp1"); + try (Query q = + pm.newQuery( + FullTimeEmployee.class, "phoneNumbers.containsValue(value) && value == '1111'")) { + q.declareVariables("String value"); + List emps = q.executeList(); + checkQueryResultWithoutOrder(ASSERTION_FAILED, SINGLE_STRING_QUERY_22, emps, expected); + } catch (Exception ex) { + fail(ASSERTION_FAILED, ex.getLocalizedMessage()); + } + tx.commit(); + } finally { + cleanupPM(pm); + } + } + + /** + * Navigation through multi-valued field. + * + *

This query selects all FullTimeEmployee instances from the candidate collection having a + * phone number "1111" (i.e. the phoneNumbers map includes an entry with value "1111"). + */ + @Test + @Execution(ExecutionMode.CONCURRENT) + public void testQuery22c() { + PersistenceManager pm = getPMF().getPersistenceManager(); + Transaction tx = pm.currentTransaction(); + try { + tx.begin(); + List expected = + getTransientCompanyModelInstancesAsList(FullTimeEmployee.class, "emp1"); + try (Query q = + pm.newQuery( + FullTimeEmployee.class, "phoneNumbers.containsValue(value) && value == '1111'")) { + q.declareVariables("String value"); + List emps = q.executeList(); + checkQueryResultWithoutOrder(ASSERTION_FAILED, SINGLE_STRING_QUERY_22, emps, expected); + } catch (Exception ex) { + fail(ASSERTION_FAILED, ex.getLocalizedMessage()); + } + tx.commit(); + } finally { + cleanupPM(pm); + } + } + + /** + * Navigation through multi-valued field. + * + *

This query selects all FullTimeEmployee instances from the candidate collection having a + * phone number "1111" (i.e. the phoneNumbers map includes an entry with value "1111"). + */ + @SuppressWarnings("unchecked") + @Test + @Execution(ExecutionMode.CONCURRENT) + public void testQuery22d() { + PersistenceManager pm = getPMF().getPersistenceManager(); + Transaction tx = pm.currentTransaction(); + try { + tx.begin(); + List expected = + getTransientCompanyModelInstancesAsList(FullTimeEmployee.class, "emp1"); + try (Query q = pm.newQuery(SINGLE_STRING_QUERY_22)) { + List emps = (List) q.execute(); + checkQueryResultWithoutOrder(ASSERTION_FAILED, SINGLE_STRING_QUERY_22, emps, expected); + } catch (Exception ex) { + fail(ASSERTION_FAILED, ex.getLocalizedMessage()); + } + tx.commit(); + } finally { + cleanupPM(pm); + } + } + + /** + * Navigation through multi-valued field. + * + *

This query selects all FullTimeEmployee instances from the candidate collection having a + * phone number "1111" (i.e. the phoneNumbers map includes an entry with value "1111"). + */ + @SuppressWarnings("unchecked") + @Test + @Execution(ExecutionMode.CONCURRENT) + public void testQuery22f() { + PersistenceManager pm = getPMF().getPersistenceManager(); + Transaction tx = pm.currentTransaction(); + try { + tx.begin(); + List expected = + getTransientCompanyModelInstancesAsList(FullTimeEmployee.class, "emp1"); + try (JDOQLTypedQuery q = pm.newJDOQLTypedQuery(FullTimeEmployee.class)) { + QFullTimeEmployee cand = QFullTimeEmployee.candidate("this"); + Expression value = q.variable("value", String.class); + q.filter(cand.phoneNumbers.containsValue(value).and(value.eq("1111"))); + List emps = q.executeList(); + checkQueryResultWithoutOrder(ASSERTION_FAILED, SINGLE_STRING_QUERY_22, emps, expected); + } catch (Exception ex) { + fail(ASSERTION_FAILED, ex.getLocalizedMessage()); + } + tx.commit(); + } finally { + cleanupPM(pm); + } + } + private List testQuery08Helper() { Info info1 = new Info(); info1.firstname = "Michael"; diff --git a/tck/src/main/resources/jdo/applicationidentity/org/apache/jdo/tck/pc/company/jdoTest.properties b/tck/src/main/resources/jdo/applicationidentity/org/apache/jdo/tck/pc/company/jdoTest.properties index 0a4263bed..ad5edbd55 100644 --- a/tck/src/main/resources/jdo/applicationidentity/org/apache/jdo/tck/pc/company/jdoTest.properties +++ b/tck/src/main/resources/jdo/applicationidentity/org/apache/jdo/tck/pc/company/jdoTest.properties @@ -90,6 +90,7 @@ org.apache.jdo.tck.pc.company.Person#lastname=jdo:persistent,annotation:dfg org.apache.jdo.tck.pc.company.Person#middlename=jdo:persistent,annotation:mediated org.apache.jdo.tck.pc.company.Person#personid=jdo:persistent,annotation:key org.apache.jdo.tck.pc.company.Person#phoneNumbers=jdo:persistent,annotation:mediated +org.apache.jdo.tck.pc.company.Person#languages=jdo:persistent,annotation:mediated org.apache.jdo.tck.pc.company.Project=jdo:persistent,oid:org.apache.jdo.tck.pc.company.Project$Oid org.apache.jdo.tck.pc.company.Project#budget=jdo:persistent,annotation:dfg diff --git a/tck/src/main/resources/jdo/applicationidentity/org/apache/jdo/tck/pc/company/package.jdo b/tck/src/main/resources/jdo/applicationidentity/org/apache/jdo/tck/pc/company/package.jdo index d2d0f7bff..9271e0d07 100644 --- a/tck/src/main/resources/jdo/applicationidentity/org/apache/jdo/tck/pc/company/package.jdo +++ b/tck/src/main/resources/jdo/applicationidentity/org/apache/jdo/tck/pc/company/package.jdo @@ -131,6 +131,9 @@ has application identity. + + + SELECT firstname, lastname INTO org.apache.jdo.tck.query.result.classes.FullName @@ -275,6 +278,9 @@ has application identity. + + + SELECT firstname, lastname INTO org.apache.jdo.tck.query.result.classes.FullName diff --git a/tck/src/main/resources/jdo/datastoreidentity/org/apache/jdo/tck/pc/company/jdoTest.properties b/tck/src/main/resources/jdo/datastoreidentity/org/apache/jdo/tck/pc/company/jdoTest.properties index 68064d3b6..cd6bb91e8 100644 --- a/tck/src/main/resources/jdo/datastoreidentity/org/apache/jdo/tck/pc/company/jdoTest.properties +++ b/tck/src/main/resources/jdo/datastoreidentity/org/apache/jdo/tck/pc/company/jdoTest.properties @@ -90,6 +90,7 @@ org.apache.jdo.tck.pc.company.Person#lastname=jdo:persistent,annotation:dfg org.apache.jdo.tck.pc.company.Person#middlename=jdo:persistent,annotation:mediated org.apache.jdo.tck.pc.company.Person#personid=jdo:persistent,annotation:dfg org.apache.jdo.tck.pc.company.Person#phoneNumbers=jdo:persistent,annotation:mediated +org.apache.jdo.tck.pc.company.Person#languages=jdo:persistent,annotation:mediated org.apache.jdo.tck.pc.company.Project=jdo:persistent org.apache.jdo.tck.pc.company.Project#budget=jdo:persistent,annotation:dfg diff --git a/tck/src/main/resources/jdo/datastoreidentity/org/apache/jdo/tck/pc/company/package.jdo b/tck/src/main/resources/jdo/datastoreidentity/org/apache/jdo/tck/pc/company/package.jdo index 73a1e8b8f..9e21bf3e6 100644 --- a/tck/src/main/resources/jdo/datastoreidentity/org/apache/jdo/tck/pc/company/package.jdo +++ b/tck/src/main/resources/jdo/datastoreidentity/org/apache/jdo/tck/pc/company/package.jdo @@ -106,6 +106,9 @@ has datastore identity. + + + SELECT firstname, lastname INTO org.apache.jdo.tck.query.result.classes.FullName @@ -241,6 +244,9 @@ has datastore identity. + + + SELECT firstname, lastname INTO org.apache.jdo.tck.query.result.classes.FullName diff --git a/tck/src/main/resources/orm/applicationidentity/org/apache/jdo/tck/pc/company/package-standard.orm b/tck/src/main/resources/orm/applicationidentity/org/apache/jdo/tck/pc/company/package-standard.orm index 1cab66700..5558039df 100644 --- a/tck/src/main/resources/orm/applicationidentity/org/apache/jdo/tck/pc/company/package-standard.orm +++ b/tck/src/main/resources/orm/applicationidentity/org/apache/jdo/tck/pc/company/package-standard.orm @@ -150,6 +150,10 @@ has application identity. + + + + SELECT FROM org.apache.jdo.tck.pc.company.Person WHERE personid > 2 @@ -314,6 +318,10 @@ has application identity. + + + + SELECT FROM org.apache.jdo.tck.pc.company.Person WHERE personid > 2 diff --git a/tck/src/main/resources/orm/applicationidentity/org/apache/jdo/tck/pc/company/package-standard1.orm b/tck/src/main/resources/orm/applicationidentity/org/apache/jdo/tck/pc/company/package-standard1.orm index 95df78cf3..0ad8f621e 100644 --- a/tck/src/main/resources/orm/applicationidentity/org/apache/jdo/tck/pc/company/package-standard1.orm +++ b/tck/src/main/resources/orm/applicationidentity/org/apache/jdo/tck/pc/company/package-standard1.orm @@ -133,6 +133,10 @@ Inheritance strategy: new-table for all classes. + + + + diff --git a/tck/src/main/resources/orm/applicationidentity/org/apache/jdo/tck/pc/company/package-standard2.orm b/tck/src/main/resources/orm/applicationidentity/org/apache/jdo/tck/pc/company/package-standard2.orm index 4a1e6035f..0c9f119c7 100644 --- a/tck/src/main/resources/orm/applicationidentity/org/apache/jdo/tck/pc/company/package-standard2.orm +++ b/tck/src/main/resources/orm/applicationidentity/org/apache/jdo/tck/pc/company/package-standard2.orm @@ -97,6 +97,10 @@ Inheritance strategy: + + + + @@ -147,6 +151,10 @@ Inheritance strategy: + + + + @@ -201,6 +209,10 @@ Inheritance strategy: + + + + diff --git a/tck/src/main/resources/orm/applicationidentity/org/apache/jdo/tck/pc/company/package-standard3.orm b/tck/src/main/resources/orm/applicationidentity/org/apache/jdo/tck/pc/company/package-standard3.orm index 870f65c97..71538499f 100644 --- a/tck/src/main/resources/orm/applicationidentity/org/apache/jdo/tck/pc/company/package-standard3.orm +++ b/tck/src/main/resources/orm/applicationidentity/org/apache/jdo/tck/pc/company/package-standard3.orm @@ -133,6 +133,10 @@ MedicalInsurance and DentalInsurance have inheritance strategy "new-table". + + + + diff --git a/tck/src/main/resources/orm/applicationidentity/org/apache/jdo/tck/pc/company/package-standard4.orm b/tck/src/main/resources/orm/applicationidentity/org/apache/jdo/tck/pc/company/package-standard4.orm index 52908894a..71ae59879 100644 --- a/tck/src/main/resources/orm/applicationidentity/org/apache/jdo/tck/pc/company/package-standard4.orm +++ b/tck/src/main/resources/orm/applicationidentity/org/apache/jdo/tck/pc/company/package-standard4.orm @@ -131,6 +131,10 @@ have inheritance strategy "superclass-table". + + + + diff --git a/tck/src/main/resources/orm/datastoreidentity/org/apache/jdo/tck/pc/company/package-standard.orm b/tck/src/main/resources/orm/datastoreidentity/org/apache/jdo/tck/pc/company/package-standard.orm index 454de256a..4571bdd5b 100644 --- a/tck/src/main/resources/orm/datastoreidentity/org/apache/jdo/tck/pc/company/package-standard.orm +++ b/tck/src/main/resources/orm/datastoreidentity/org/apache/jdo/tck/pc/company/package-standard.orm @@ -156,6 +156,10 @@ has datastore identity. + + + + SELECT FROM org.apache.jdo.tck.pc.company.Person WHERE personid > 2 @@ -321,6 +325,10 @@ has datastore identity. + + + + SELECT FROM org.apache.jdo.tck.pc.company.Person WHERE personid > 2 diff --git a/tck/src/main/resources/orm/datastoreidentity/org/apache/jdo/tck/pc/company/package-standard1.orm b/tck/src/main/resources/orm/datastoreidentity/org/apache/jdo/tck/pc/company/package-standard1.orm index 5db4c134a..3d677abcd 100644 --- a/tck/src/main/resources/orm/datastoreidentity/org/apache/jdo/tck/pc/company/package-standard1.orm +++ b/tck/src/main/resources/orm/datastoreidentity/org/apache/jdo/tck/pc/company/package-standard1.orm @@ -140,6 +140,10 @@ Inheritance strategy: new-table for all classes. + + + + diff --git a/tck/src/main/resources/orm/datastoreidentity/org/apache/jdo/tck/pc/company/package-standard2.orm b/tck/src/main/resources/orm/datastoreidentity/org/apache/jdo/tck/pc/company/package-standard2.orm index 40bd806fd..7f63f376f 100644 --- a/tck/src/main/resources/orm/datastoreidentity/org/apache/jdo/tck/pc/company/package-standard2.orm +++ b/tck/src/main/resources/orm/datastoreidentity/org/apache/jdo/tck/pc/company/package-standard2.orm @@ -102,6 +102,10 @@ Inheritance strategy: + + + + @@ -157,6 +161,10 @@ Inheritance strategy: + + + + @@ -216,6 +224,10 @@ Inheritance strategy: + + + + diff --git a/tck/src/main/resources/orm/datastoreidentity/org/apache/jdo/tck/pc/company/package-standard3.orm b/tck/src/main/resources/orm/datastoreidentity/org/apache/jdo/tck/pc/company/package-standard3.orm index 74a8303e7..6c97e05e9 100644 --- a/tck/src/main/resources/orm/datastoreidentity/org/apache/jdo/tck/pc/company/package-standard3.orm +++ b/tck/src/main/resources/orm/datastoreidentity/org/apache/jdo/tck/pc/company/package-standard3.orm @@ -140,6 +140,10 @@ MedicalInsurance and DentalInsurance have inheritance strategy "new-table". + + + + diff --git a/tck/src/main/resources/orm/datastoreidentity/org/apache/jdo/tck/pc/company/package-standard4.orm b/tck/src/main/resources/orm/datastoreidentity/org/apache/jdo/tck/pc/company/package-standard4.orm index fb0c50137..9632de4bf 100644 --- a/tck/src/main/resources/orm/datastoreidentity/org/apache/jdo/tck/pc/company/package-standard4.orm +++ b/tck/src/main/resources/orm/datastoreidentity/org/apache/jdo/tck/pc/company/package-standard4.orm @@ -138,6 +138,10 @@ have inheritance strategy "superclass-table". + + + + diff --git a/tck/src/main/resources/sql/derby/applicationidentity/schema.sql b/tck/src/main/resources/sql/derby/applicationidentity/schema.sql index cdbfe4fa7..183df4b32 100644 --- a/tck/src/main/resources/sql/derby/applicationidentity/schema.sql +++ b/tck/src/main/resources/sql/derby/applicationidentity/schema.sql @@ -292,6 +292,7 @@ DROP TABLE insuranceplans; DROP TABLE project_reviewer; DROP TABLE project_member; DROP TABLE project_member_jpa; +DROP TABLE employee_languages; DROP TABLE employee_phoneno_type; DROP TABLE persons; DROP TABLE projects; @@ -407,6 +408,11 @@ CREATE TABLE employee_phoneno_type ( TYPE VARCHAR(16) NOT NULL ); +CREATE TABLE employee_languages ( + EMPID INTEGER REFERENCES persons NOT NULL, + LANGUAGE VARCHAR(255) NOT NULL +); + ALTER TABLE project_reviewer ADD CONSTRAINT PR_PROJ_FK FOREIGN KEY (PROJID) REFERENCES projects(PROJID); diff --git a/tck/src/main/resources/sql/derby/applicationidentity/schema1.sql b/tck/src/main/resources/sql/derby/applicationidentity/schema1.sql index ae2e4f475..07ee5bcd1 100644 --- a/tck/src/main/resources/sql/derby/applicationidentity/schema1.sql +++ b/tck/src/main/resources/sql/derby/applicationidentity/schema1.sql @@ -38,6 +38,7 @@ DROP TABLE medicalinsurance; DROP TABLE insuranceplans; DROP TABLE project_reviewer; DROP TABLE project_member; +DROP TABLE employee_languages; DROP TABLE employee_phoneno_type; DROP TABLE fulltimeemployees; DROP TABLE parttimeemployees; @@ -168,7 +169,12 @@ CREATE TABLE employee_phoneno_type ( TYPE VARCHAR(16) NOT NULL ); -ALTER TABLE project_reviewer +CREATE TABLE employee_languages ( + EMPID INTEGER REFERENCES persons NOT NULL, + LANGUAGE VARCHAR(255) NOT NULL +); + +ALTER TABLE project_reviewer ADD CONSTRAINT PR_PROJ_FK FOREIGN KEY (PROJID) REFERENCES projects(PROJID); diff --git a/tck/src/main/resources/sql/derby/applicationidentity/schema11.sql b/tck/src/main/resources/sql/derby/applicationidentity/schema11.sql index 4870505e8..8142b632f 100644 --- a/tck/src/main/resources/sql/derby/applicationidentity/schema11.sql +++ b/tck/src/main/resources/sql/derby/applicationidentity/schema11.sql @@ -37,6 +37,7 @@ ALTER TABLE insuranceplans DROP CONSTRAINT INS_EMP_FK; DROP TABLE insuranceplans; DROP TABLE project_reviewer; DROP TABLE project_member; +DROP TABLE employee_languages; DROP TABLE employee_phoneno_type; DROP TABLE persons; DROP TABLE projects; @@ -147,7 +148,12 @@ CREATE TABLE employee_phoneno_type ( TYPE VARCHAR(16) NOT NULL ); -ALTER TABLE project_reviewer +CREATE TABLE employee_languages ( + EMPID INTEGER REFERENCES persons NOT NULL, + LANGUAGE VARCHAR(255) NOT NULL +); + +ALTER TABLE project_reviewer ADD CONSTRAINT PR_PROJ_FK FOREIGN KEY (PROJID) REFERENCES projects(PROJID); diff --git a/tck/src/main/resources/sql/derby/applicationidentity/schema2.sql b/tck/src/main/resources/sql/derby/applicationidentity/schema2.sql index 3cd942326..b7c60037b 100644 --- a/tck/src/main/resources/sql/derby/applicationidentity/schema2.sql +++ b/tck/src/main/resources/sql/derby/applicationidentity/schema2.sql @@ -45,6 +45,9 @@ DROP TABLE dentalinsurance; DROP TABLE medicalinsurance; DROP TABLE project_reviewer; DROP TABLE project_member; +DROP TABLE employee_languages; +DROP TABLE fulltime_employee_languages; +DROP TABLE parttime_employee_languages; DROP TABLE employee_phoneno_type; DROP TABLE fulltime_employee_phoneno_type; DROP TABLE parttime_employee_phoneno_type; @@ -202,7 +205,22 @@ CREATE TABLE parttime_employee_phoneno_type ( TYPE VARCHAR(16) NOT NULL ); -ALTER TABLE project_reviewer +CREATE TABLE employee_languages( + EMPID INTEGER REFERENCES persons NOT NULL, + LANGUAGE VARCHAR(255) NOT NULL +); + +CREATE TABLE fulltime_employee_languages ( + EMPID INTEGER REFERENCES fulltimeemployees NOT NULL, + LANGUAGE VARCHAR(255) NOT NULL +); + +CREATE TABLE parttime_employee_languages ( + EMPID INTEGER REFERENCES parttimeemployees NOT NULL, + LANGUAGE VARCHAR(255) NOT NULL +); + +ALTER TABLE project_reviewer ADD CONSTRAINT PR_PROJ_FK FOREIGN KEY (PROJID) REFERENCES projects(PROJID); diff --git a/tck/src/main/resources/sql/derby/applicationidentity/schema3.sql b/tck/src/main/resources/sql/derby/applicationidentity/schema3.sql index 323a19e2f..fa9aa7861 100644 --- a/tck/src/main/resources/sql/derby/applicationidentity/schema3.sql +++ b/tck/src/main/resources/sql/derby/applicationidentity/schema3.sql @@ -40,6 +40,7 @@ DROP TABLE dentalinsurance; DROP TABLE medicalinsurance; DROP TABLE project_reviewer; DROP TABLE project_member; +DROP TABLE employee_languages; DROP TABLE employee_phoneno_type; DROP TABLE fulltimeemployees; DROP TABLE parttimeemployees; @@ -165,7 +166,12 @@ CREATE TABLE employee_phoneno_type ( TYPE VARCHAR(16) NOT NULL ); -ALTER TABLE project_reviewer +CREATE TABLE employee_languages ( + EMPID INTEGER REFERENCES persons NOT NULL, + LANGUAGE VARCHAR(255) NOT NULL +); + +ALTER TABLE project_reviewer ADD CONSTRAINT PR_PROJ_FK FOREIGN KEY (PROJID) REFERENCES projects(PROJID); diff --git a/tck/src/main/resources/sql/derby/applicationidentity/schema4.sql b/tck/src/main/resources/sql/derby/applicationidentity/schema4.sql index fea13dbfc..0feaf0742 100644 --- a/tck/src/main/resources/sql/derby/applicationidentity/schema4.sql +++ b/tck/src/main/resources/sql/derby/applicationidentity/schema4.sql @@ -36,6 +36,7 @@ ALTER TABLE project_reviewer DROP CONSTRAINT PR_REV_FK; DROP TABLE insuranceplans; DROP TABLE project_reviewer; DROP TABLE project_member; +DROP TABLE employee_languages; DROP TABLE employee_phoneno_type; DROP TABLE employees; DROP TABLE persons; @@ -142,7 +143,12 @@ CREATE TABLE employee_phoneno_type ( TYPE VARCHAR(16) NOT NULL ); -ALTER TABLE project_reviewer +CREATE TABLE employee_languages ( + EMPID INTEGER REFERENCES persons NOT NULL, + LANGUAGE VARCHAR(255) NOT NULL +); + +ALTER TABLE project_reviewer ADD CONSTRAINT PR_PROJ_FK FOREIGN KEY (PROJID) REFERENCES projects(PROJID); diff --git a/tck/src/main/resources/sql/derby/datastoreidentity/schema.sql b/tck/src/main/resources/sql/derby/datastoreidentity/schema.sql index a289678a9..6ee1db208 100644 --- a/tck/src/main/resources/sql/derby/datastoreidentity/schema.sql +++ b/tck/src/main/resources/sql/derby/datastoreidentity/schema.sql @@ -226,6 +226,7 @@ ALTER TABLE insuranceplans DROP CONSTRAINT INS_EMP_FK; DROP TABLE insuranceplans; DROP TABLE project_reviewer; DROP TABLE project_member; +DROP TABLE employee_languages; DROP TABLE employee_phoneno_type; DROP TABLE persons; DROP TABLE projects; @@ -344,7 +345,12 @@ CREATE TABLE employee_phoneno_type ( TYPE VARCHAR(16) NOT NULL ); -ALTER TABLE project_reviewer +CREATE TABLE employee_languages ( + EMPID INTEGER REFERENCES persons NOT NULL, + LANGUAGE VARCHAR(255) NOT NULL +); + +ALTER TABLE project_reviewer ADD CONSTRAINT PR_PROJ_FK FOREIGN KEY (PROJID) REFERENCES projects; diff --git a/tck/src/main/resources/sql/derby/datastoreidentity/schema1.sql b/tck/src/main/resources/sql/derby/datastoreidentity/schema1.sql index e07bb778f..787cec1b3 100644 --- a/tck/src/main/resources/sql/derby/datastoreidentity/schema1.sql +++ b/tck/src/main/resources/sql/derby/datastoreidentity/schema1.sql @@ -38,6 +38,7 @@ DROP TABLE medicalinsurance; DROP TABLE insuranceplans; DROP TABLE project_reviewer; DROP TABLE project_member; +DROP TABLE employee_languages; DROP TABLE employee_phoneno_type; DROP TABLE fulltimeemployees; DROP TABLE parttimeemployees; @@ -197,7 +198,14 @@ CREATE TABLE employee_phoneno_type ( REFERENCES persons (DATASTORE_IDENTITY) ); -ALTER TABLE project_reviewer +CREATE TABLE employee_languages ( + EMPID INTEGER REFERENCES persons NOT NULL, + LANGUAGE VARCHAR(255) NOT NULL, + CONSTRAINT employee_languages_EMPID FOREIGN KEY (EMPID) + REFERENCES persons (DATASTORE_IDENTITY) +); + +ALTER TABLE project_reviewer ADD CONSTRAINT PR_PROJ_FK FOREIGN KEY (PROJID) REFERENCES projects(DATASTORE_IDENTITY); diff --git a/tck/src/main/resources/sql/derby/datastoreidentity/schema11.sql b/tck/src/main/resources/sql/derby/datastoreidentity/schema11.sql index e30c64732..1b05c9258 100644 --- a/tck/src/main/resources/sql/derby/datastoreidentity/schema11.sql +++ b/tck/src/main/resources/sql/derby/datastoreidentity/schema11.sql @@ -37,6 +37,7 @@ ALTER TABLE insuranceplans DROP CONSTRAINT INS_EMP_FK; DROP TABLE insuranceplans; DROP TABLE project_reviewer; DROP TABLE project_member; +DROP TABLE employee_languages; DROP TABLE employee_phoneno_type; DROP TABLE persons; DROP TABLE projects; @@ -155,7 +156,12 @@ CREATE TABLE employee_phoneno_type ( TYPE VARCHAR(16) NOT NULL ); -ALTER TABLE project_reviewer +CREATE TABLE employee_languages ( + EMPID INTEGER REFERENCES persons NOT NULL, + LANGUAGE VARCHAR(255) NOT NULL +); + +ALTER TABLE project_reviewer ADD CONSTRAINT PR_PROJ_FK FOREIGN KEY (PROJID) REFERENCES projects; diff --git a/tck/src/main/resources/sql/derby/datastoreidentity/schema2.sql b/tck/src/main/resources/sql/derby/datastoreidentity/schema2.sql index 6918c0d38..f7c799d02 100644 --- a/tck/src/main/resources/sql/derby/datastoreidentity/schema2.sql +++ b/tck/src/main/resources/sql/derby/datastoreidentity/schema2.sql @@ -45,6 +45,9 @@ DROP TABLE dentalinsurance; DROP TABLE medicalinsurance; DROP TABLE project_reviewer; DROP TABLE project_member; +DROP TABLE employee_languages; +DROP TABLE fulltime_employee_languages; +DROP TABLE parttime_employee_languages; DROP TABLE employee_phoneno_type; DROP TABLE fulltime_employee_phoneno_type; DROP TABLE parttime_employee_phoneno_type; @@ -247,7 +250,28 @@ CREATE TABLE parttime_employee_phoneno_type ( REFERENCES parttimeemployees (DATASTORE_IDENTITY) ); -ALTER TABLE project_reviewer +CREATE TABLE employee_languages ( + EMPID INTEGER NOT NULL, + LANGUAGE VARCHAR(255) NOT NULL, + CONSTRAINT EMP_LANGUAGE_PERSONS FOREIGN KEY (EMPID) + REFERENCES persons (DATASTORE_IDENTITY) +); + +CREATE TABLE fulltime_employee_languages ( + EMPID INTEGER NOT NULL, + LANGUAGE VARCHAR(255) NOT NULL, + CONSTRAINT FTEMP_LANGUAGE_FTEMP FOREIGN KEY (EMPID) + REFERENCES fulltimeemployees (DATASTORE_IDENTITY) +); + +CREATE TABLE parttime_employee_languages ( + EMPID INTEGER REFERENCES parttimeemployees NOT NULL, + LANGUAGE VARCHAR(255) NOT NULL, + CONSTRAINT PTEMP_LANGUAGE_PTEMP FOREIGN KEY (EMPID) + REFERENCES parttimeemployees (DATASTORE_IDENTITY) +); + +ALTER TABLE project_reviewer ADD CONSTRAINT PR_PROJ_FK FOREIGN KEY (PROJID) REFERENCES projects; diff --git a/tck/src/main/resources/sql/derby/datastoreidentity/schema3.sql b/tck/src/main/resources/sql/derby/datastoreidentity/schema3.sql index 63d1a1329..478735d9e 100644 --- a/tck/src/main/resources/sql/derby/datastoreidentity/schema3.sql +++ b/tck/src/main/resources/sql/derby/datastoreidentity/schema3.sql @@ -40,6 +40,7 @@ DROP TABLE dentalinsurance; DROP TABLE medicalinsurance; DROP TABLE project_reviewer; DROP TABLE project_member; +DROP TABLE employee_languages; DROP TABLE employee_phoneno_type; DROP TABLE fulltimeemployees; DROP TABLE parttimeemployees; @@ -204,6 +205,13 @@ CREATE TABLE employee_phoneno_type ( REFERENCES persons (DATASTORE_IDENTITY) ); +CREATE TABLE employee_languages ( + EMPID INTEGER NOT NULL, + LANGUAGE VARCHAR(255) NOT NULL, + CONSTRAINT EMP_LANGUAGE_PERSONS FOREIGN KEY (EMPID) + REFERENCES persons (DATASTORE_IDENTITY) +); + ALTER TABLE project_reviewer ADD CONSTRAINT PR_PROJ_FK FOREIGN KEY (PROJID) REFERENCES projects; diff --git a/tck/src/main/resources/sql/derby/datastoreidentity/schema4.sql b/tck/src/main/resources/sql/derby/datastoreidentity/schema4.sql index af9627141..1e9602952 100644 --- a/tck/src/main/resources/sql/derby/datastoreidentity/schema4.sql +++ b/tck/src/main/resources/sql/derby/datastoreidentity/schema4.sql @@ -36,6 +36,7 @@ ALTER TABLE project_reviewer DROP CONSTRAINT PR_REV_FK; DROP TABLE insuranceplans; DROP TABLE project_reviewer; DROP TABLE project_member; +DROP TABLE employee_languages; DROP TABLE employee_phoneno_type; DROP TABLE employees; DROP TABLE persons; @@ -167,7 +168,14 @@ CREATE TABLE employee_phoneno_type ( REFERENCES persons (DATASTORE_IDENTITY) ); -ALTER TABLE project_reviewer +CREATE TABLE employee_languages ( + EMPID INTEGER NOT NULL, + LANGUAGE VARCHAR(255) NOT NULL, + CONSTRAINT employee_languages_EMPID FOREIGN KEY (EMPID) + REFERENCES persons (DATASTORE_IDENTITY) +); + +ALTER TABLE project_reviewer ADD CONSTRAINT PR_PROJ_FK FOREIGN KEY (PROJID) REFERENCES projects; diff --git a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyForSampleQueriesTest.xml b/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyForSampleQueriesTest.xml index 301874886..82fe49736 100644 --- a/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyForSampleQueriesTest.xml +++ b/tck/src/main/resources/testdata/org/apache/jdo/tck/pc/company/companyForSampleQueriesTest.xml @@ -143,6 +143,12 @@ 123456-1 + + + German + English + + @@ -178,6 +184,12 @@ 123456-2 + + + English + Japanese + + @@ -216,6 +228,12 @@ 123456-3 + + + English + French + + @@ -246,6 +264,11 @@ 124456-3 + + + English + + @@ -280,6 +303,14 @@ 126456-3 + + + German + English + French + Japanese + +