Skip to content
Success

Console Output

Skipping 2,154 KB.. Full Log
    [junit] [EL Config]: metadata: The column name for element [id] is being defaulted to: ID.
    [junit] [EL Config]: metadata: The column name for element [endPrice] is being defaulted to: ENDPRICE.
    [junit] [EL Config]: metadata: The alias name for the entity class [class org.eclipse.persistence.jpars.test.model.auction.StaticBid] is being defaulted to: StaticBid.
    [junit] [EL Config]: metadata: The column name for element [amount] is being defaulted to: AMOUNT.
    [junit] [EL Config]: metadata: The column name for element [id] is being defaulted to: ID.
    [junit] [EL Config]: metadata: The column name for element [time] is being defaulted to: TIME.
    [junit] [EL Config]: metadata: The alias name for the entity class [class org.eclipse.persistence.jpars.test.model.multitenant.Account] is being defaulted to: Account.
    [junit] [EL Config]: metadata: The column name for element [id] is being defaulted to: ID.
    [junit] [EL Config]: metadata: The column name for element [accountNumber] is being defaulted to: ACCOUNTNUMBER.
    [junit] [EL Config]: metadata: The column name for element [version] is being defaulted to: VERSION.
    [junit] [EL Warning]: metadata: You have specified multiple ids for the entity class [org.eclipse.persistence.jpars.test.model.multitenant.Account] without specifying an @IdClass. By doing this you may lose the ability to find by identity, distributed cache support etc. Note: You may however use EntityManager find operations by passing a list of primary key fields. Else, you will have to use JPQL queries to read your entities. For other id options see @PrimaryKey.
    [junit] [EL Config]: metadata: The alias name for the entity class [class org.eclipse.persistence.jpars.test.model.auction.StaticUser] is being defaulted to: StaticUser.
    [junit] [EL Config]: metadata: The column name for element [name] is being defaulted to: NAME.
    [junit] [EL Config]: metadata: The column name for element [id] is being defaulted to: ID.
    [junit] [EL Config]: metadata: The column name for element [version] is being defaulted to: VERSION.
    [junit] [EL Config]: metadata: The alias name for the entity class [class org.eclipse.persistence.jpars.test.model.auction.StaticAddress] is being defaulted to: StaticAddress.
    [junit] [EL Config]: metadata: The column name for element [city] is being defaulted to: CITY.
    [junit] [EL Config]: metadata: The column name for element [street] is being defaulted to: STREET.
    [junit] [EL Config]: metadata: The column name for element [postalCode] is being defaulted to: POSTALCODE.
    [junit] [EL Config]: metadata: The column name for element [id] is being defaulted to: ID.
    [junit] [EL Config]: metadata: The column name for element [type] is being defaulted to: TYPE.
    [junit] [EL Config]: metadata: The primary key column name for the mapping element [field user] is being defaulted to: ID.
    [junit] [EL Config]: metadata: The foreign key column name for the mapping element [user] is being defaulted to: USER_ID.
    [junit] [EL Config]: metadata: The primary key column name for the mapping element [field auction] is being defaulted to: ID.
    [junit] [EL Config]: metadata: The foreign key column name for the mapping element [auction] is being defaulted to: AUCTION_ID.
    [junit] [EL Info]: EclipseLink, version: Eclipse Persistence Services - 2.7.15.v20240516-53511fdbd8
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_ST_AUC_USER DROP FOREIGN KEY FK_JPARS_ST_AUC_USER_ADDRESS_ID
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_ST_AUC_BID DROP FOREIGN KEY FK_JPARS_ST_AUC_BID_AUCTION_ID
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_ST_AUC_BID DROP FOREIGN KEY FK_JPARS_ST_AUC_BID_USER_ID
    [junit] [EL Fine]: sql: DROP TABLE JPARS_ST_AUC_USER
    [junit] [EL Fine]: sql: DROP TABLE JPARS_ST_AUC_AUCTION
    [junit] [EL Fine]: sql: DROP TABLE JPARS_ST_AUC_BID
    [junit] [EL Fine]: sql: DROP TABLE JPARS_ST_AUC_ADDRESS
    [junit] [EL Fine]: sql: DROP TABLE JPARS_ACCOUNT
    [junit] [EL Fine]: sql: CREATE TABLE JPARS_ST_AUC_USER (ID INTEGER NOT NULL, NAME VARCHAR(255), VERSION INTEGER, ADDRESS_TYPE VARCHAR(255), ADDRESS_ID INTEGER, PRIMARY KEY (ID))
    [junit] [EL Fine]: sql: CREATE TABLE JPARS_ST_AUC_AUCTION (ID INTEGER NOT NULL, DESCRIPTION VARCHAR(255), ENDPRICE DOUBLE, IMAGE VARCHAR(255), NAME VARCHAR(255), SOLD TINYINT(1) default 0, STARTPRICE DOUBLE, PRIMARY KEY (ID))
    [junit] [EL Fine]: sql: CREATE TABLE JPARS_ST_AUC_BID (ID INTEGER NOT NULL, AMOUNT DOUBLE, TIME BIGINT, AUCTION_ID INTEGER, USER_ID INTEGER, PRIMARY KEY (ID))
    [junit] [EL Fine]: sql: CREATE TABLE JPARS_ST_AUC_ADDRESS (ID INTEGER NOT NULL, TYPE VARCHAR(255) NOT NULL, CITY VARCHAR(255), POSTALCODE VARCHAR(255), STREET VARCHAR(255), PRIMARY KEY (ID, TYPE))
    [junit] [EL Fine]: sql: CREATE TABLE JPARS_ACCOUNT (TENANT_ID VARCHAR(31) NOT NULL, ID INTEGER NOT NULL, ACCOUNTNUMBER VARCHAR(255), VERSION INTEGER, PRIMARY KEY (TENANT_ID, ID))
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_ST_AUC_USER ADD CONSTRAINT FK_JPARS_ST_AUC_USER_ADDRESS_ID FOREIGN KEY (ADDRESS_ID, ADDRESS_TYPE) REFERENCES JPARS_ST_AUC_ADDRESS (ID, TYPE)
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_ST_AUC_BID ADD CONSTRAINT FK_JPARS_ST_AUC_BID_AUCTION_ID FOREIGN KEY (AUCTION_ID) REFERENCES JPARS_ST_AUC_AUCTION (ID)
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_ST_AUC_BID ADD CONSTRAINT FK_JPARS_ST_AUC_BID_USER_ID FOREIGN KEY (USER_ID) REFERENCES JPARS_ST_AUC_USER (ID)
    [junit] [EL Fine]: sql: CREATE TABLE SEQUENCE (SEQ_NAME VARCHAR(50) NOT NULL, SEQ_COUNT DECIMAL(38), PRIMARY KEY (SEQ_NAME))
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Warning]: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.7.15.v20240516-53511fdbd8): org.eclipse.persistence.exceptions.DatabaseException
    [junit] Internal Exception: java.sql.SQLSyntaxErrorException: Table 'SEQUENCE' already exists
    [junit] Error Code: 1050
    [junit] Call: CREATE TABLE SEQUENCE (SEQ_NAME VARCHAR(50) NOT NULL, SEQ_COUNT DECIMAL(38), PRIMARY KEY (SEQ_NAME))
    [junit] Query: DataModifyQuery(sql="CREATE TABLE SEQUENCE (SEQ_NAME VARCHAR(50) NOT NULL, SEQ_COUNT DECIMAL(38), PRIMARY KEY (SEQ_NAME))")
    [junit] [EL Fine]: sql: DELETE FROM SEQUENCE WHERE SEQ_NAME = 'SEQ_GEN'
    [junit] [EL Fine]: sql: SELECT * FROM SEQUENCE WHERE SEQ_NAME = 'SEQ_GEN'
    [junit] [EL Fine]: sql: INSERT INTO SEQUENCE(SEQ_NAME, SEQ_COUNT) values ('SEQ_GEN', 0)
    [junit] [EL Warning]: moxy: MOXy BV: Facets generation could not be configured. EclipseLink's JavaModelInputImpl was not detected, instead JavaModelInput is of class: class org.eclipse.persistence.jaxb.javamodel.oxm.OXMJavaModelInputImpl
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 4d639147-fc05-4034-bb25-063742d84663
    [junit] [EL Fine]: sql: SELECT ID FROM JPARS_ST_AUC_BID WHERE (ID = ?)
    [junit] 	bind => [333]
    [junit] [EL Fine]: sql: SELECT ID FROM JPARS_ST_AUC_BID WHERE (ID = ?)
    [junit] 	bind => [444]
    [junit] [EL Fine]: sql: SELECT ID FROM JPARS_ST_AUC_BID WHERE (ID = ?)
    [junit] 	bind => [555]
    [junit] [EL Fine]: sql: SELECT ID FROM JPARS_ST_AUC_AUCTION WHERE (ID = ?)
    [junit] 	bind => [111]
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--RETURN 4d639147-fc05-4034-bb25-063742d84663 org.eclipse.persistence.jpars.test.model.auction.StaticAuction org.eclipse.persistence.jpars.test.model.auction.StaticAuction@5529ff44
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 4d639147-fc05-4034-bb25-063742d84663
    [junit] [EL Fine]: sql: SELECT ID, AMOUNT, TIME, AUCTION_ID, USER_ID FROM JPARS_ST_AUC_BID WHERE (ID = ?)
    [junit] 	bind => [1234]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_ST_AUC_USER (ID, NAME, VERSION, ADDRESS_TYPE, ADDRESS_ID) VALUES (?, ?, ?, ?, ?)
    [junit] 	bind => [2002, User 2002, 1, null, null]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_ST_AUC_BID (ID, AMOUNT, TIME, AUCTION_ID, USER_ID) VALUES (?, ?, ?, ?, ?)
    [junit] 	bind => [1001, 5000.0, 1715860840540, null, 2002]
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 4d639147-fc05-4034-bb25-063742d84663
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--RETURN 4d639147-fc05-4034-bb25-063742d84663 org.eclipse.persistence.jpars.test.model.auction.StaticBid org.eclipse.persistence.jpars.test.model.auction.StaticBid@10244722
    [junit] [EL Fine]: sql: DELETE FROM JPARS_ST_AUC_BID WHERE (ID = ?)
    [junit] 	bind => [1001]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_ST_AUC_USER WHERE ((ID = ?) AND (VERSION = ?))
    [junit] 	bind => [2002, 1]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_ST_AUC_BID (ID, AMOUNT, TIME, AUCTION_ID, USER_ID) VALUES (?, ?, ?, ?, ?)
    [junit] 	bind => [1234, 110.0, 1715860840553, null, null]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_ST_AUC_BID (ID, AMOUNT, TIME, AUCTION_ID, USER_ID) VALUES (?, ?, ?, ?, ?)
    [junit] 	bind => [5678, 111.0, 1715860840553, null, null]
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 4d639147-fc05-4034-bb25-063742d84663
    [junit] [EL Fine]: sql: SELECT ID FROM JPARS_ST_AUC_AUCTION WHERE (ID = ?)
    [junit] 	bind => [12]
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--RETURN 4d639147-fc05-4034-bb25-063742d84663 org.eclipse.persistence.jpars.test.model.auction.StaticAuction org.eclipse.persistence.jpars.test.model.auction.StaticAuction@4ac8768e
    [junit] [EL Fine]: sql: DELETE FROM JPARS_ST_AUC_BID WHERE (ID = ?)
    [junit] 	bind => [1234]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_ST_AUC_BID WHERE (ID = ?)
    [junit] 	bind => [5678]
    [junit] [EL Config]: metadata: The access type for the persistent class [class org.eclipse.persistence.jpars.test.model.employee.Expertise] is set to [FIELD].
    [junit] [EL Config]: metadata: The target entity (reference) class for the one to one mapping element [field employee] is being defaulted to: class org.eclipse.persistence.jpars.test.model.employee.Employee.
    [junit] [EL Config]: metadata: The access type for the persistent class [class org.eclipse.persistence.jpars.test.model.employee.Office] is set to [FIELD].
    [junit] [EL Config]: metadata: The target entity (reference) class for the one to many mapping element [field employees] is being defaulted to: class org.eclipse.persistence.jpars.test.model.employee.Employee.
    [junit] [EL Config]: metadata: The access type for the persistent class [class org.eclipse.persistence.jpars.test.model.employee.Project] is set to [FIELD].
    [junit] [EL Config]: metadata: The target entity (reference) class for the many to one mapping element [field teamLeader] is being defaulted to: class org.eclipse.persistence.jpars.test.model.employee.Employee.
    [junit] [EL Config]: metadata: The access type for the persistent class [class org.eclipse.persistence.jpars.test.model.employee.LargeProject] is set to [FIELD].
    [junit] [EL Config]: metadata: The access type for the persistent class [class org.eclipse.persistence.jpars.test.model.employee.EmployeeAddress] is set to [FIELD].
    [junit] [EL Config]: metadata: The access type for the persistent class [class org.eclipse.persistence.jpars.test.model.employee.PhoneNumber] is set to [FIELD].
    [junit] [EL Config]: metadata: The target entity (reference) class for the many to one mapping element [field employee] is being defaulted to: class org.eclipse.persistence.jpars.test.model.employee.Employee.
    [junit] [EL Config]: metadata: The access type for the persistent class [class org.eclipse.persistence.jpars.test.model.employee.Employee] is set to [FIELD].
    [junit] [EL Config]: metadata: The target entity (reference) class for the many to many mapping element [field projects] is being defaulted to: class org.eclipse.persistence.jpars.test.model.employee.Project.
    [junit] [EL Config]: metadata: The target entity (reference) class for the one to one mapping element [field address] is being defaulted to: class org.eclipse.persistence.jpars.test.model.employee.EmployeeAddress.
    [junit] [EL Config]: metadata: The target entity (reference) class for the many to one mapping element [field manager] is being defaulted to: class org.eclipse.persistence.jpars.test.model.employee.Employee.
    [junit] [EL Config]: metadata: The target entity (reference) class for the one to many mapping element [field managedEmployees] is being defaulted to: class org.eclipse.persistence.jpars.test.model.employee.Employee.
    [junit] [EL Config]: metadata: The target entity (reference) class for the one to many mapping element [field expertiseAreas] is being defaulted to: class org.eclipse.persistence.jpars.test.model.employee.Expertise.
    [junit] [EL Config]: metadata: The target entity (reference) class for the many to one mapping element [field office] is being defaulted to: class org.eclipse.persistence.jpars.test.model.employee.Office.
    [junit] [EL Config]: metadata: The target class (reference) class for the element collection mapping element [field certifications] is being defaulted to: class org.eclipse.persistence.jpars.test.model.employee.Certification.
    [junit] [EL Config]: metadata: The target entity (reference) class for the one to many mapping element [field phoneNumbers] is being defaulted to: class org.eclipse.persistence.jpars.test.model.employee.PhoneNumber.
    [junit] [EL Config]: metadata: The target class (reference) class for the element collection mapping element [field responsibilities] is being defaulted to: class java.lang.String.
    [junit] [EL Config]: metadata: The access type for the persistent class [class org.eclipse.persistence.jpars.test.model.employee.SmallProject] is set to [FIELD].
    [junit] [EL Config]: metadata: The access type for the persistent class [class org.eclipse.persistence.jpars.test.model.employee.Certification] is set to [FIELD].
    [junit] [EL Config]: metadata: The access type for the persistent class [class org.eclipse.persistence.jpars.test.model.employee.EmploymentPeriod] is set to [FIELD].
    [junit] [EL Config]: metadata: The alias name for the entity class [class org.eclipse.persistence.jpars.test.model.employee.Expertise] is being defaulted to: Expertise.
    [junit] [EL Config]: metadata: The column name for element [subject] is being defaulted to: SUBJECT.
    [junit] [EL Config]: metadata: The column name for element [id] is being defaulted to: ID.
    [junit] [EL Config]: metadata: The alias name for the entity class [class org.eclipse.persistence.jpars.test.model.employee.Office] is being defaulted to: Office.
    [junit] [EL Config]: metadata: The column name for element [location] is being defaulted to: LOCATION.
    [junit] [EL Config]: metadata: The column name for element [id] is being defaulted to: ID.
    [junit] [EL Config]: metadata: The alias name for the entity class [class org.eclipse.persistence.jpars.test.model.employee.LargeProject] is being defaulted to: LargeProject.
    [junit] [EL Config]: metadata: The alias name for the entity class [class org.eclipse.persistence.jpars.test.model.employee.Project] is being defaulted to: Project.
    [junit] [EL Config]: metadata: The column name for element [version] is being defaulted to: VERSION.
    [junit] [EL Config]: metadata: The primary key column name for the inheritance class [class org.eclipse.persistence.jpars.test.model.employee.LargeProject] is being defaulted to: PROJ_ID.
    [junit] [EL Config]: metadata: The foreign key column name for the inheritance class [org.eclipse.persistence.jpars.test.model.employee.LargeProject] is being defaulted to: PROJ_ID.
    [junit] [EL Config]: metadata: The column name for element [milestone] is being defaulted to: MILESTONE.
    [junit] [EL Config]: metadata: The column name for element [budget] is being defaulted to: BUDGET.
    [junit] [EL Config]: metadata: The alias name for the entity class [class org.eclipse.persistence.jpars.test.model.employee.EmployeeAddress] is being defaulted to: EmployeeAddress.
    [junit] [EL Config]: metadata: The column name for element [country] is being defaulted to: COUNTRY.
    [junit] [EL Config]: metadata: The column name for element [province] is being defaulted to: PROVINCE.
    [junit] [EL Config]: metadata: The column name for element [city] is being defaulted to: CITY.
    [junit] [EL Config]: metadata: The column name for element [street] is being defaulted to: STREET.
    [junit] [EL Config]: metadata: The column name for element [areaPicture] is being defaulted to: AREAPICTURE.
    [junit] [EL Config]: metadata: The alias name for the entity class [class org.eclipse.persistence.jpars.test.model.employee.PhoneNumber] is being defaulted to: PhoneNumber.
    [junit] [EL Config]: metadata: The alias name for the entity class [class org.eclipse.persistence.jpars.test.model.employee.Employee] is being defaulted to: Employee.
    [junit] [EL Config]: metadata: The column name for element [endDate] is being defaulted to: ENDDATE.
    [junit] [EL Config]: metadata: The column name for element [startDate] is being defaulted to: STARTDATE.
    [junit] [EL Config]: metadata: Ignoring default serialization on element [field gender] within entity class [class org.eclipse.persistence.jpars.test.model.employee.Employee] since EclipseLink convert metadata is specified.
    [junit] [EL Config]: metadata: The column name for element [salary] is being defaulted to: SALARY.
    [junit] [EL Config]: metadata: The column name for element [version] is being defaulted to: VERSION.
    [junit] [EL Config]: metadata: The secondary table primary key column name for element [class org.eclipse.persistence.jpars.test.model.employee.Employee] is being defaulted to: EMP_ID.
    [junit] [EL Config]: metadata: The secondary table foreign key column name for element [org.eclipse.persistence.jpars.test.model.employee.Employee] is being defaulted to: EMP_ID.
    [junit] [EL Config]: metadata: The alias name for the entity class [class org.eclipse.persistence.jpars.test.model.employee.SmallProject] is being defaulted to: SmallProject.
    [junit] [EL Config]: metadata: The primary key column name for the inheritance class [class org.eclipse.persistence.jpars.test.model.employee.SmallProject] is being defaulted to: PROJ_ID.
    [junit] [EL Config]: metadata: The foreign key column name for the inheritance class [org.eclipse.persistence.jpars.test.model.employee.SmallProject] is being defaulted to: PROJ_ID.
    [junit] [EL Config]: metadata: The primary key column name for the mapping element [field responsibilities] is being defaulted to: EMP_ID.
    [junit] [EL Config]: metadata: The foreign key column name for the mapping element [responsibilities] is being defaulted to: Employee_EMP_ID.
    [junit] [EL Config]: metadata: The value column name for the basic collection/map mapping element mapping element [responsibilities] is being defaulted to: RESPONSIBILITIES.
    [junit] [EL Config]: metadata: The primary key column name for the mapping element [field employee] is being defaulted to: EMP_ID.
    [junit] [EL Config]: metadata: The foreign key column name for the mapping element [employee] is being defaulted to: EMPLOYEE_EMP_ID.
    [junit] [EL Config]: metadata: The primary key column name for the mapping element [field teamLeader] is being defaulted to: EMP_ID.
    [junit] [EL Config]: metadata: The primary key column name for the mapping element [field employee] is being defaulted to: EMP_ID.
    [junit] [EL Config]: metadata: The source primary key column name for the many to many mapping [field projects] is being defaulted to: EMP_ID.
    [junit] [EL Config]: metadata: The target primary key column name for the many to many mapping [field projects] is being defaulted to: PROJ_ID.
    [junit] [EL Config]: metadata: The primary key column name for the mapping element [field address] is being defaulted to: ADDRESS_ID.
    [junit] [EL Config]: metadata: The primary key column name for the mapping element [field manager] is being defaulted to: EMP_ID.
    [junit] [EL Config]: metadata: The primary key column name for the mapping element [field office] is being defaulted to: ID.
    [junit] [EL Config]: metadata: The primary key column name for the mapping element [field certifications] is being defaulted to: EMP_ID.
    [junit] [EL Info]: EclipseLink, version: Eclipse Persistence Services - 2.7.15.v20240516-53511fdbd8
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_EMPLOYEE DROP FOREIGN KEY FK_JPARS_EMPLOYEE_OFFICE_ID
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_EMPLOYEE DROP FOREIGN KEY FK_JPARS_EMPLOYEE_ADDR_ID
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_EMPLOYEE DROP FOREIGN KEY FK_JPARS_EMPLOYEE_MANAGER_ID
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_SALARY DROP FOREIGN KEY FK_JPARS_SALARY_EMP_ID
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_PROJECT DROP FOREIGN KEY FK_JPARS_PROJECT_LEADER_ID
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_LPROJECT DROP FOREIGN KEY FK_JPARS_LPROJECT_PROJ_ID
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_PHONENUMBER DROP FOREIGN KEY FK_JPARS_PHONENUMBER_EMP_ID
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_SPROJECT DROP FOREIGN KEY FK_JPARS_SPROJECT_PROJ_ID
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_EMPLOYEE_EXPERTISE DROP FOREIGN KEY FK_JPARS_EMPLOYEE_EXPERTISE_EMPLOYEE_EMP_ID
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_CERTIFICATION DROP FOREIGN KEY FK_JPARS_CERTIFICATION_EMP_ID
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_RESPONS DROP FOREIGN KEY FK_JPARS_RESPONS_Employee_EMP_ID
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_PROJ_EMP DROP FOREIGN KEY FK_JPARS_PROJ_EMP_PROJ_ID
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_PROJ_EMP DROP FOREIGN KEY FK_JPARS_PROJ_EMP_EMP_ID
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_EMPLOYEE
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_SALARY
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_EMPLOYEEADDRESS
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_PROJECT
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_LPROJECT
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_PHONENUMBER
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_SPROJECT
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_EMPLOYEE_EXPERTISE
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_EMPLOYEE_OFFICE
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_CERTIFICATION
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_RESPONS
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_PROJ_EMP
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_EMPLOYEE
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_SALARY
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_EMPLOYEEADDRESS
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_PROJECT
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_LPROJECT
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_PHONENUMBER
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_SPROJECT
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_EMPLOYEE_EXPERTISE
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_EMPLOYEE_OFFICE
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_CERTIFICATION
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_RESPONS
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_PROJ_EMP
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_EMPLOYEE
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_SALARY
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_EMPLOYEEADDRESS
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_PROJECT
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_LPROJECT
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_PHONENUMBER
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_SPROJECT
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_EMPLOYEE_EXPERTISE
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_EMPLOYEE_OFFICE
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_CERTIFICATION
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_RESPONS
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_PROJ_EMP
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_EMPLOYEE
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_SALARY
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_EMPLOYEEADDRESS
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_PROJECT
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_LPROJECT
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_PHONENUMBER
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_SPROJECT
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_EMPLOYEE_EXPERTISE
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_EMPLOYEE_OFFICE
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_CERTIFICATION
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_RESPONS
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_PROJ_EMP
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_EMPLOYEE
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_SALARY
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_EMPLOYEEADDRESS
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_PROJECT
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_LPROJECT
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_PHONENUMBER
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_SPROJECT
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_EMPLOYEE_EXPERTISE
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_EMPLOYEE_OFFICE
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_CERTIFICATION
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_RESPONS
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_PROJ_EMP
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: CREATE TABLE JPARS_EMPLOYEE (EMP_ID INTEGER NOT NULL, F_NAME VARCHAR(255), GENDER VARCHAR(255), L_NAME VARCHAR(255), VERSION BIGINT, END_DATE DATE, START_DATE DATE, MANAGER_ID INTEGER, OFFICE_ID INTEGER, ADDR_ID INTEGER, PRIMARY KEY (EMP_ID))
    [junit] [EL Fine]: sql: CREATE TABLE JPARS_SALARY (EMP_ID INTEGER NOT NULL, SALARY DOUBLE, PRIMARY KEY (EMP_ID))
    [junit] [EL Fine]: sql: CREATE TABLE JPARS_EMPLOYEEADDRESS (ADDRESS_ID INTEGER NOT NULL, AREAPICTURE LONGBLOB, CITY VARCHAR(255), COUNTRY LONGTEXT, P_CODE VARCHAR(255), PROVINCE VARCHAR(255), STREET VARCHAR(255), PRIMARY KEY (ADDRESS_ID))
    [junit] [EL Fine]: sql: CREATE TABLE JPARS_PROJECT (PROJ_ID INTEGER NOT NULL, PROJ_TYPE VARCHAR(31), DESCRIP VARCHAR(255), PROJ_NAME VARCHAR(255), VERSION BIGINT, LEADER_ID INTEGER, PRIMARY KEY (PROJ_ID))
    [junit] [EL Fine]: sql: CREATE TABLE JPARS_LPROJECT (PROJ_ID INTEGER NOT NULL, BUDGET DOUBLE, MILESTONE DATETIME, PRIMARY KEY (PROJ_ID))
    [junit] [EL Fine]: sql: CREATE TABLE JPARS_PHONENUMBER (PHONE_TYPE VARCHAR(255) NOT NULL, AREA_CODE VARCHAR(255), EMP_ID INTEGER NOT NULL, P_NUMBER VARCHAR(255), PRIMARY KEY (PHONE_TYPE, EMP_ID))
    [junit] [EL Fine]: sql: CREATE TABLE JPARS_SPROJECT (PROJ_ID INTEGER NOT NULL, PRIMARY KEY (PROJ_ID))
    [junit] [EL Fine]: sql: CREATE TABLE JPARS_EMPLOYEE_EXPERTISE (ID INTEGER NOT NULL, SUBJECT VARCHAR(255), EMPLOYEE_EMP_ID INTEGER, PRIMARY KEY (ID))
    [junit] [EL Fine]: sql: CREATE TABLE JPARS_EMPLOYEE_OFFICE (ID INTEGER NOT NULL, LOCATION VARCHAR(255), PRIMARY KEY (ID))
    [junit] [EL Fine]: sql: CREATE TABLE JPARS_CERTIFICATION (ISSUE_DATE VARCHAR(255), NAME VARCHAR(255), EMP_ID INTEGER)
    [junit] [EL Fine]: sql: CREATE TABLE JPARS_RESPONS (Employee_EMP_ID INTEGER, RESPONSIBILITIES VARCHAR(255))
    [junit] [EL Fine]: sql: CREATE TABLE JPARS_PROJ_EMP (EMP_ID INTEGER NOT NULL, PROJ_ID INTEGER NOT NULL, PRIMARY KEY (EMP_ID, PROJ_ID))
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_EMPLOYEE ADD CONSTRAINT FK_JPARS_EMPLOYEE_OFFICE_ID FOREIGN KEY (OFFICE_ID) REFERENCES JPARS_EMPLOYEE_OFFICE (ID)
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_EMPLOYEE ADD CONSTRAINT FK_JPARS_EMPLOYEE_ADDR_ID FOREIGN KEY (ADDR_ID) REFERENCES JPARS_EMPLOYEEADDRESS (ADDRESS_ID)
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_EMPLOYEE ADD CONSTRAINT FK_JPARS_EMPLOYEE_MANAGER_ID FOREIGN KEY (MANAGER_ID) REFERENCES JPARS_EMPLOYEE (EMP_ID)
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_SALARY ADD CONSTRAINT FK_JPARS_SALARY_EMP_ID FOREIGN KEY (EMP_ID) REFERENCES JPARS_EMPLOYEE (EMP_ID)
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_PROJECT ADD CONSTRAINT FK_JPARS_PROJECT_LEADER_ID FOREIGN KEY (LEADER_ID) REFERENCES JPARS_EMPLOYEE (EMP_ID)
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_LPROJECT ADD CONSTRAINT FK_JPARS_LPROJECT_PROJ_ID FOREIGN KEY (PROJ_ID) REFERENCES JPARS_PROJECT (PROJ_ID)
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_PHONENUMBER ADD CONSTRAINT FK_JPARS_PHONENUMBER_EMP_ID FOREIGN KEY (EMP_ID) REFERENCES JPARS_EMPLOYEE (EMP_ID)
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_SPROJECT ADD CONSTRAINT FK_JPARS_SPROJECT_PROJ_ID FOREIGN KEY (PROJ_ID) REFERENCES JPARS_PROJECT (PROJ_ID)
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_EMPLOYEE_EXPERTISE ADD CONSTRAINT FK_JPARS_EMPLOYEE_EXPERTISE_EMPLOYEE_EMP_ID FOREIGN KEY (EMPLOYEE_EMP_ID) REFERENCES JPARS_EMPLOYEE (EMP_ID)
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_CERTIFICATION ADD CONSTRAINT FK_JPARS_CERTIFICATION_EMP_ID FOREIGN KEY (EMP_ID) REFERENCES JPARS_EMPLOYEE (EMP_ID)
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_RESPONS ADD CONSTRAINT FK_JPARS_RESPONS_Employee_EMP_ID FOREIGN KEY (Employee_EMP_ID) REFERENCES JPARS_EMPLOYEE (EMP_ID)
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_PROJ_EMP ADD CONSTRAINT FK_JPARS_PROJ_EMP_PROJ_ID FOREIGN KEY (PROJ_ID) REFERENCES JPARS_PROJECT (PROJ_ID)
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_PROJ_EMP ADD CONSTRAINT FK_JPARS_PROJ_EMP_EMP_ID FOREIGN KEY (EMP_ID) REFERENCES JPARS_EMPLOYEE (EMP_ID)
    [junit] [EL Fine]: sql: DELETE FROM SEQUENCE WHERE SEQ_NAME = 'SEQ_GEN'
    [junit] [EL Fine]: sql: SELECT * FROM SEQUENCE WHERE SEQ_NAME = 'SEQ_GEN'
    [junit] [EL Fine]: sql: INSERT INTO SEQUENCE(SEQ_NAME, SEQ_COUNT) values ('SEQ_GEN', 0)
    [junit] [EL Warning]: moxy: MOXy BV: Facets generation could not be configured. EclipseLink's JavaModelInputImpl was not detected, instead JavaModelInput is of class: class org.eclipse.persistence.jaxb.javamodel.oxm.OXMJavaModelInputImpl
    [junit] [EL Fine]: sql: UPDATE SEQUENCE SET SEQ_COUNT = SEQ_COUNT + ? WHERE SEQ_NAME = ?
    [junit] 	bind => [50, SEQ_GEN]
    [junit] [EL Fine]: sql: SELECT SEQ_COUNT FROM SEQUENCE WHERE SEQ_NAME = ?
    [junit] 	bind => [SEQ_GEN]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEEADDRESS (ADDRESS_ID, AREAPICTURE, CITY, COUNTRY, P_CODE, PROVINCE, STREET) VALUES (?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [1, null, NYC, US, null, NY, null]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEE (EMP_ID, F_NAME, GENDER, L_NAME, VERSION, END_DATE, START_DATE, MANAGER_ID, OFFICE_ID, ADDR_ID) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [121, Bill, M, Anderson, 1, null, null, null, null, null]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEE (EMP_ID, F_NAME, GENDER, L_NAME, VERSION, END_DATE, START_DATE, MANAGER_ID, OFFICE_ID, ADDR_ID) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [768, John, M, Smith, 1, null, 2024-05-16, 121, null, 1]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEE_EXPERTISE (ID, SUBJECT, EMPLOYEE_EMP_ID) VALUES (?, ?, ?)
    [junit] 	bind => [2, REST, 121]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_PHONENUMBER (PHONE_TYPE, AREA_CODE, P_NUMBER, EMP_ID) VALUES (?, ?, ?, ?)
    [junit] 	bind => [Work, 613, 9876543, 768]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_PHONENUMBER (PHONE_TYPE, AREA_CODE, P_NUMBER, EMP_ID) VALUES (?, ?, ?, ?)
    [junit] 	bind => [Home, 613, 1234567, 768]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_SALARY (SALARY, EMP_ID) VALUES (?, ?)
    [junit] 	bind => [0.0, 121]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_SALARY (SALARY, EMP_ID) VALUES (?, ?)
    [junit] 	bind => [35000.0, 768]
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 4d639147-fc05-4034-bb25-063742d84663
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--RETURN 4d639147-fc05-4034-bb25-063742d84663 org.eclipse.persistence.jpars.test.model.employee.Employee id=121, firstName=Bill, lastName=Anderson
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PROJ_EMP WHERE (EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PROJ_EMP WHERE (EMP_ID = ?)
    [junit] 	bind => [121]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PHONENUMBER WHERE ((PHONE_TYPE = ?) AND (EMP_ID = ?))
    [junit] 	bind => [Home, 768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PHONENUMBER WHERE ((PHONE_TYPE = ?) AND (EMP_ID = ?))
    [junit] 	bind => [Work, 768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEE_EXPERTISE WHERE (ID = ?)
    [junit] 	bind => [2]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_RESPONS WHERE (Employee_EMP_ID = ?)
    [junit] 	bind => [121]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_RESPONS WHERE (Employee_EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PHONENUMBER WHERE (EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_SALARY WHERE (EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEE WHERE ((EMP_ID = ?) AND (VERSION = ?))
    [junit] 	bind => [768, 1]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEEADDRESS WHERE (ADDRESS_ID = ?)
    [junit] 	bind => [1]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_SALARY WHERE (EMP_ID = ?)
    [junit] 	bind => [121]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEE WHERE ((EMP_ID = ?) AND (VERSION = ?))
    [junit] 	bind => [121, 1]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEEADDRESS (ADDRESS_ID, AREAPICTURE, CITY, COUNTRY, P_CODE, PROVINCE, STREET) VALUES (?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [3, null, NYC, US, null, NY, null]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEE (EMP_ID, F_NAME, GENDER, L_NAME, VERSION, END_DATE, START_DATE, MANAGER_ID, OFFICE_ID, ADDR_ID) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [121, Bill, M, Anderson, 1, null, null, null, null, null]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEE (EMP_ID, F_NAME, GENDER, L_NAME, VERSION, END_DATE, START_DATE, MANAGER_ID, OFFICE_ID, ADDR_ID) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [768, John, M, Smith, 1, null, 2024-05-16, 121, null, 3]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEE_EXPERTISE (ID, SUBJECT, EMPLOYEE_EMP_ID) VALUES (?, ?, ?)
    [junit] 	bind => [4, REST, 121]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_PHONENUMBER (PHONE_TYPE, AREA_CODE, P_NUMBER, EMP_ID) VALUES (?, ?, ?, ?)
    [junit] 	bind => [Work, 613, 9876543, 768]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_PHONENUMBER (PHONE_TYPE, AREA_CODE, P_NUMBER, EMP_ID) VALUES (?, ?, ?, ?)
    [junit] 	bind => [Home, 613, 1234567, 768]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_SALARY (SALARY, EMP_ID) VALUES (?, ?)
    [junit] 	bind => [0.0, 121]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_SALARY (SALARY, EMP_ID) VALUES (?, ?)
    [junit] 	bind => [35000.0, 768]
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 4d639147-fc05-4034-bb25-063742d84663
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--RETURN 4d639147-fc05-4034-bb25-063742d84663 org.eclipse.persistence.jpars.test.model.employee.Employee id=121, firstName=Bill, lastName=Anderson
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PROJ_EMP WHERE (EMP_ID = ?)
    [junit] 	bind => [121]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PROJ_EMP WHERE (EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PHONENUMBER WHERE ((PHONE_TYPE = ?) AND (EMP_ID = ?))
    [junit] 	bind => [Home, 768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PHONENUMBER WHERE ((PHONE_TYPE = ?) AND (EMP_ID = ?))
    [junit] 	bind => [Work, 768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEE_EXPERTISE WHERE (ID = ?)
    [junit] 	bind => [4]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_RESPONS WHERE (Employee_EMP_ID = ?)
    [junit] 	bind => [121]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_RESPONS WHERE (Employee_EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PHONENUMBER WHERE (EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_SALARY WHERE (EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEE WHERE ((EMP_ID = ?) AND (VERSION = ?))
    [junit] 	bind => [768, 1]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEEADDRESS WHERE (ADDRESS_ID = ?)
    [junit] 	bind => [3]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_SALARY WHERE (EMP_ID = ?)
    [junit] 	bind => [121]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEE WHERE ((EMP_ID = ?) AND (VERSION = ?))
    [junit] 	bind => [121, 1]
    [junit] [EL Warning]: moxy: MOXy BV: Facets generation could not be configured. EclipseLink's JavaModelInputImpl was not detected, instead JavaModelInput is of class: class org.eclipse.persistence.jaxb.javamodel.oxm.OXMJavaModelInputImpl
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 4d639147-fc05-4034-bb25-063742d84663
    [junit] [EL Fine]: sql: SELECT ID FROM JPARS_ST_AUC_BID WHERE (ID = ?)
    [junit] 	bind => [333]
    [junit] [EL Fine]: sql: SELECT ID FROM JPARS_ST_AUC_BID WHERE (ID = ?)
    [junit] 	bind => [444]
    [junit] [EL Fine]: sql: SELECT ID FROM JPARS_ST_AUC_BID WHERE (ID = ?)
    [junit] 	bind => [555]
    [junit] [EL Fine]: sql: SELECT ID FROM JPARS_ST_AUC_AUCTION WHERE (ID = ?)
    [junit] 	bind => [111]
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--RETURN 4d639147-fc05-4034-bb25-063742d84663 org.eclipse.persistence.jpars.test.model.auction.StaticAuction org.eclipse.persistence.jpars.test.model.auction.StaticAuction@562919fe
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 4d639147-fc05-4034-bb25-063742d84663
    [junit] [EL Fine]: sql: SELECT ID, AMOUNT, TIME, AUCTION_ID, USER_ID FROM JPARS_ST_AUC_BID WHERE (ID = ?)
    [junit] 	bind => [1234]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_ST_AUC_USER (ID, NAME, VERSION, ADDRESS_TYPE, ADDRESS_ID) VALUES (?, ?, ?, ?, ?)
    [junit] 	bind => [2002, User 2002, 1, null, null]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_ST_AUC_BID (ID, AMOUNT, TIME, AUCTION_ID, USER_ID) VALUES (?, ?, ?, ?, ?)
    [junit] 	bind => [1001, 5000.0, 1715860841017, null, 2002]
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 4d639147-fc05-4034-bb25-063742d84663
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--RETURN 4d639147-fc05-4034-bb25-063742d84663 org.eclipse.persistence.jpars.test.model.auction.StaticBid org.eclipse.persistence.jpars.test.model.auction.StaticBid@63fd4dda
    [junit] [EL Fine]: sql: DELETE FROM JPARS_ST_AUC_BID WHERE (ID = ?)
    [junit] 	bind => [1001]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_ST_AUC_USER WHERE ((ID = ?) AND (VERSION = ?))
    [junit] 	bind => [2002, 1]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_ST_AUC_BID (ID, AMOUNT, TIME, AUCTION_ID, USER_ID) VALUES (?, ?, ?, ?, ?)
    [junit] 	bind => [5678, 111.0, 1715860841027, null, null]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_ST_AUC_BID (ID, AMOUNT, TIME, AUCTION_ID, USER_ID) VALUES (?, ?, ?, ?, ?)
    [junit] 	bind => [1234, 110.0, 1715860841027, null, null]
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 4d639147-fc05-4034-bb25-063742d84663
    [junit] [EL Fine]: sql: SELECT ID FROM JPARS_ST_AUC_AUCTION WHERE (ID = ?)
    [junit] 	bind => [12]
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--RETURN 4d639147-fc05-4034-bb25-063742d84663 org.eclipse.persistence.jpars.test.model.auction.StaticAuction org.eclipse.persistence.jpars.test.model.auction.StaticAuction@39da5e49
    [junit] [EL Fine]: sql: DELETE FROM JPARS_ST_AUC_BID WHERE (ID = ?)
    [junit] 	bind => [1234]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_ST_AUC_BID WHERE (ID = ?)
    [junit] 	bind => [5678]
    [junit] [EL Warning]: moxy: MOXy BV: Facets generation could not be configured. EclipseLink's JavaModelInputImpl was not detected, instead JavaModelInput is of class: class org.eclipse.persistence.jaxb.javamodel.oxm.OXMJavaModelInputImpl
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEEADDRESS (ADDRESS_ID, AREAPICTURE, CITY, COUNTRY, P_CODE, PROVINCE, STREET) VALUES (?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [5, null, NYC, US, null, NY, null]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEE (EMP_ID, F_NAME, GENDER, L_NAME, VERSION, END_DATE, START_DATE, MANAGER_ID, OFFICE_ID, ADDR_ID) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [121, Bill, M, Anderson, 1, null, null, null, null, null]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEE (EMP_ID, F_NAME, GENDER, L_NAME, VERSION, END_DATE, START_DATE, MANAGER_ID, OFFICE_ID, ADDR_ID) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [768, John, M, Smith, 1, null, 2024-05-16, 121, null, 5]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEE_EXPERTISE (ID, SUBJECT, EMPLOYEE_EMP_ID) VALUES (?, ?, ?)
    [junit] 	bind => [6, REST, 121]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_PHONENUMBER (PHONE_TYPE, AREA_CODE, P_NUMBER, EMP_ID) VALUES (?, ?, ?, ?)
    [junit] 	bind => [Home, 613, 1234567, 768]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_PHONENUMBER (PHONE_TYPE, AREA_CODE, P_NUMBER, EMP_ID) VALUES (?, ?, ?, ?)
    [junit] 	bind => [Work, 613, 9876543, 768]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_SALARY (SALARY, EMP_ID) VALUES (?, ?)
    [junit] 	bind => [0.0, 121]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_SALARY (SALARY, EMP_ID) VALUES (?, ?)
    [junit] 	bind => [35000.0, 768]
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 4d639147-fc05-4034-bb25-063742d84663
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--RETURN 4d639147-fc05-4034-bb25-063742d84663 org.eclipse.persistence.jpars.test.model.employee.Employee id=121, firstName=Bill, lastName=Anderson
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PROJ_EMP WHERE (EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PROJ_EMP WHERE (EMP_ID = ?)
    [junit] 	bind => [121]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PHONENUMBER WHERE ((PHONE_TYPE = ?) AND (EMP_ID = ?))
    [junit] 	bind => [Home, 768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PHONENUMBER WHERE ((PHONE_TYPE = ?) AND (EMP_ID = ?))
    [junit] 	bind => [Work, 768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEE_EXPERTISE WHERE (ID = ?)
    [junit] 	bind => [6]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_RESPONS WHERE (Employee_EMP_ID = ?)
    [junit] 	bind => [121]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_RESPONS WHERE (Employee_EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PHONENUMBER WHERE (EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_SALARY WHERE (EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEE WHERE ((EMP_ID = ?) AND (VERSION = ?))
    [junit] 	bind => [768, 1]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEEADDRESS WHERE (ADDRESS_ID = ?)
    [junit] 	bind => [5]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_SALARY WHERE (EMP_ID = ?)
    [junit] 	bind => [121]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEE WHERE ((EMP_ID = ?) AND (VERSION = ?))
    [junit] 	bind => [121, 1]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEEADDRESS (ADDRESS_ID, AREAPICTURE, CITY, COUNTRY, P_CODE, PROVINCE, STREET) VALUES (?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [7, null, NYC, US, null, NY, null]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEE (EMP_ID, F_NAME, GENDER, L_NAME, VERSION, END_DATE, START_DATE, MANAGER_ID, OFFICE_ID, ADDR_ID) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [121, Bill, M, Anderson, 1, null, null, null, null, null]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEE (EMP_ID, F_NAME, GENDER, L_NAME, VERSION, END_DATE, START_DATE, MANAGER_ID, OFFICE_ID, ADDR_ID) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [768, John, M, Smith, 1, null, 2024-05-16, 121, null, 7]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEE_EXPERTISE (ID, SUBJECT, EMPLOYEE_EMP_ID) VALUES (?, ?, ?)
    [junit] 	bind => [8, REST, 121]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_PHONENUMBER (PHONE_TYPE, AREA_CODE, P_NUMBER, EMP_ID) VALUES (?, ?, ?, ?)
    [junit] 	bind => [Home, 613, 1234567, 768]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_PHONENUMBER (PHONE_TYPE, AREA_CODE, P_NUMBER, EMP_ID) VALUES (?, ?, ?, ?)
    [junit] 	bind => [Work, 613, 9876543, 768]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_SALARY (SALARY, EMP_ID) VALUES (?, ?)
    [junit] 	bind => [0.0, 121]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_SALARY (SALARY, EMP_ID) VALUES (?, ?)
    [junit] 	bind => [35000.0, 768]
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 4d639147-fc05-4034-bb25-063742d84663
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--RETURN 4d639147-fc05-4034-bb25-063742d84663 org.eclipse.persistence.jpars.test.model.employee.Employee id=121, firstName=Bill, lastName=Anderson
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PROJ_EMP WHERE (EMP_ID = ?)
    [junit] 	bind => [121]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PROJ_EMP WHERE (EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PHONENUMBER WHERE ((PHONE_TYPE = ?) AND (EMP_ID = ?))
    [junit] 	bind => [Home, 768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PHONENUMBER WHERE ((PHONE_TYPE = ?) AND (EMP_ID = ?))
    [junit] 	bind => [Work, 768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEE_EXPERTISE WHERE (ID = ?)
    [junit] 	bind => [8]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_RESPONS WHERE (Employee_EMP_ID = ?)
    [junit] 	bind => [121]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_RESPONS WHERE (Employee_EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PHONENUMBER WHERE (EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_SALARY WHERE (EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEE WHERE ((EMP_ID = ?) AND (VERSION = ?))
    [junit] 	bind => [768, 1]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEEADDRESS WHERE (ADDRESS_ID = ?)
    [junit] 	bind => [7]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_SALARY WHERE (EMP_ID = ?)
    [junit] 	bind => [121]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEE WHERE ((EMP_ID = ?) AND (VERSION = ?))
    [junit] 	bind => [121, 1]
    [junit] [EL Warning]: moxy: MOXy BV: Facets generation could not be configured. EclipseLink's JavaModelInputImpl was not detected, instead JavaModelInput is of class: class org.eclipse.persistence.jaxb.javamodel.oxm.OXMJavaModelInputImpl
    [junit] [EL Warning]: Ignoring attribute [teamLeader] on class [LargeProject] as no Property was generated for it.
    [junit] [EL Warning]: Ignoring attribute [teamLeader] on class [SmallProject] as no Property was generated for it.
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.resources.MetadataResource--buildEntityMetadataResponse--ENTRY 85e225c3-fb4c-4e12-99ba-fc71dcee25fb
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.resources.MetadataResource--buildQueryMetadataResponse--ENTRY 8ac4f85d-e154-4639-9624-f405dbf1973b
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.resources.MetadataResource--buildQuerySchemaResponse--ENTRY 4d16b3a6-9dd2-4f91-acec-e51b0b72645e
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.resources.common.AbstractEntityResource--buildEntityOptionsResponse--ENTRY 9e3f2f30-5bea-44ba-b914-7d37c4907fdc
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.resources.MetadataResource--buildMetadataCatalogResponse--ENTRY 7f01f144-c2a9-453c-9e2d-1a81151e4bdb
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.resources.common.AbstractQueryResource--buildQueryOptionsResponse--ENTRY 87994591-918f-4f2f-b29a-94dc9f611660
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.resources.MetadataResource--buildEntitySchemaResponse--ENTRY a2975758-d6e8-424f-8197-fa4ff8838080
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.resources.MetadataResource--buildQuerySchemaResponse--ENTRY 78d7acde-b563-4eb9-9c3f-20fd47345f36
    [junit] [EL Warning]: moxy: MOXy BV: Facets generation could not be configured. EclipseLink's JavaModelInputImpl was not detected, instead JavaModelInput is of class: class org.eclipse.persistence.jaxb.javamodel.oxm.OXMJavaModelInputImpl
    [junit] [EL Fine]: sql: INSERT INTO JPARS_ST_AUC_AUCTION (ID, DESCRIPTION, ENDPRICE, IMAGE, NAME, SOLD, STARTPRICE) VALUES (?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [1, Auction 1 description, 0.0, null, Auction 1, false, 1000.0]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_ST_AUC_USER (ID, NAME, VERSION, ADDRESS_TYPE, ADDRESS_ID) VALUES (?, ?, ?, ?, ?)
    [junit] 	bind => [2002, User 2002, 1, null, null]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_ST_AUC_BID (ID, AMOUNT, TIME, AUCTION_ID, USER_ID) VALUES (?, ?, ?, ?, ?)
    [junit] 	bind => [1234, 110.0, 1715860841212, 1, null]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_ST_AUC_BID (ID, AMOUNT, TIME, AUCTION_ID, USER_ID) VALUES (?, ?, ?, ?, ?)
    [junit] 	bind => [5678, 111.0, 1715860841212, 1, null]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_ST_AUC_BID (ID, AMOUNT, TIME, AUCTION_ID, USER_ID) VALUES (?, ?, ?, ?, ?)
    [junit] 	bind => [1001, 5000.0, 1715860841212, null, 2002]
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 78d7acde-b563-4eb9-9c3f-20fd47345f36
    [junit] [EL Fine]: sql: SELECT ID FROM JPARS_ST_AUC_AUCTION WHERE (ID = ?)
    [junit] 	bind => [111]
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--RETURN 78d7acde-b563-4eb9-9c3f-20fd47345f36 org.eclipse.persistence.jpars.test.model.auction.StaticAuction org.eclipse.persistence.jpars.test.model.auction.StaticAuction@4c319d52
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 78d7acde-b563-4eb9-9c3f-20fd47345f36
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--RETURN 78d7acde-b563-4eb9-9c3f-20fd47345f36 org.eclipse.persistence.jpars.test.model.auction.StaticAuction org.eclipse.persistence.jpars.test.model.auction.StaticAuction@60bf494c
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 78d7acde-b563-4eb9-9c3f-20fd47345f36
    [junit] [EL Fine]: sql: SELECT ID FROM JPARS_ST_AUC_AUCTION WHERE (ID = ?)
    [junit] 	bind => [12]
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--RETURN 78d7acde-b563-4eb9-9c3f-20fd47345f36 org.eclipse.persistence.jpars.test.model.auction.StaticAuction org.eclipse.persistence.jpars.test.model.auction.StaticAuction@4026461d
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 78d7acde-b563-4eb9-9c3f-20fd47345f36
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--RETURN 78d7acde-b563-4eb9-9c3f-20fd47345f36 org.eclipse.persistence.jpars.test.model.auction.StaticBid org.eclipse.persistence.jpars.test.model.auction.StaticBid@68ea253b
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 78d7acde-b563-4eb9-9c3f-20fd47345f36
    [junit] [EL Fine]: sql: SELECT ID FROM JPARS_ST_AUC_AUCTION WHERE (ID = ?)
    [junit] 	bind => [12]
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--RETURN 78d7acde-b563-4eb9-9c3f-20fd47345f36 org.eclipse.persistence.jpars.test.model.auction.StaticAuction org.eclipse.persistence.jpars.test.model.auction.StaticAuction@4b195203
    [junit] [EL Fine]: sql: DELETE FROM JPARS_ST_AUC_BID WHERE (ID = ?)
    [junit] 	bind => [1001]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_ST_AUC_BID WHERE (ID = ?)
    [junit] 	bind => [1234]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_ST_AUC_BID WHERE (ID = ?)
    [junit] 	bind => [5678]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_ST_AUC_USER WHERE ((ID = ?) AND (VERSION = ?))
    [junit] 	bind => [2002, 1]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_ST_AUC_AUCTION WHERE (ID = ?)
    [junit] 	bind => [1]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEEADDRESS (ADDRESS_ID, AREAPICTURE, CITY, COUNTRY, P_CODE, PROVINCE, STREET) VALUES (?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [9, null, NYC, US, null, NY, null]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEE (EMP_ID, F_NAME, GENDER, L_NAME, VERSION, END_DATE, START_DATE, MANAGER_ID, OFFICE_ID, ADDR_ID) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [121, Bill, M, Anderson, 1, null, null, null, null, null]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEE (EMP_ID, F_NAME, GENDER, L_NAME, VERSION, END_DATE, START_DATE, MANAGER_ID, OFFICE_ID, ADDR_ID) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [768, John, M, Smith, 1, null, 2024-05-16, 121, null, 9]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEE_EXPERTISE (ID, SUBJECT, EMPLOYEE_EMP_ID) VALUES (?, ?, ?)
    [junit] 	bind => [10, REST, 121]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_PHONENUMBER (PHONE_TYPE, AREA_CODE, P_NUMBER, EMP_ID) VALUES (?, ?, ?, ?)
    [junit] 	bind => [Home, 613, 1234567, 768]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_PHONENUMBER (PHONE_TYPE, AREA_CODE, P_NUMBER, EMP_ID) VALUES (?, ?, ?, ?)
    [junit] 	bind => [Work, 613, 9876543, 768]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_SALARY (SALARY, EMP_ID) VALUES (?, ?)
    [junit] 	bind => [0.0, 121]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_SALARY (SALARY, EMP_ID) VALUES (?, ?)
    [junit] 	bind => [35000.0, 768]
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 78d7acde-b563-4eb9-9c3f-20fd47345f36
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--RETURN 78d7acde-b563-4eb9-9c3f-20fd47345f36 org.eclipse.persistence.jpars.test.model.employee.Employee id=121, firstName=Bill, lastName=Anderson
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PROJ_EMP WHERE (EMP_ID = ?)
    [junit] 	bind => [121]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PROJ_EMP WHERE (EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PHONENUMBER WHERE ((PHONE_TYPE = ?) AND (EMP_ID = ?))
    [junit] 	bind => [Home, 768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PHONENUMBER WHERE ((PHONE_TYPE = ?) AND (EMP_ID = ?))
    [junit] 	bind => [Work, 768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEE_EXPERTISE WHERE (ID = ?)
    [junit] 	bind => [10]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_RESPONS WHERE (Employee_EMP_ID = ?)
    [junit] 	bind => [121]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_RESPONS WHERE (Employee_EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PHONENUMBER WHERE (EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_SALARY WHERE (EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEE WHERE ((EMP_ID = ?) AND (VERSION = ?))
    [junit] 	bind => [768, 1]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEEADDRESS WHERE (ADDRESS_ID = ?)
    [junit] 	bind => [9]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_SALARY WHERE (EMP_ID = ?)
    [junit] 	bind => [121]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEE WHERE ((EMP_ID = ?) AND (VERSION = ?))
    [junit] 	bind => [121, 1]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEEADDRESS (ADDRESS_ID, AREAPICTURE, CITY, COUNTRY, P_CODE, PROVINCE, STREET) VALUES (?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [11, null, NYC, US, null, NY, null]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEE (EMP_ID, F_NAME, GENDER, L_NAME, VERSION, END_DATE, START_DATE, MANAGER_ID, OFFICE_ID, ADDR_ID) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [121, Bill, M, Anderson, 1, null, null, null, null, null]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEE (EMP_ID, F_NAME, GENDER, L_NAME, VERSION, END_DATE, START_DATE, MANAGER_ID, OFFICE_ID, ADDR_ID) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [768, John, M, Smith, 1, null, 2024-05-16, 121, null, 11]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEE_EXPERTISE (ID, SUBJECT, EMPLOYEE_EMP_ID) VALUES (?, ?, ?)
    [junit] 	bind => [12, REST, 121]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_PHONENUMBER (PHONE_TYPE, AREA_CODE, P_NUMBER, EMP_ID) VALUES (?, ?, ?, ?)
    [junit] 	bind => [Home, 613, 1234567, 768]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_PHONENUMBER (PHONE_TYPE, AREA_CODE, P_NUMBER, EMP_ID) VALUES (?, ?, ?, ?)
    [junit] 	bind => [Work, 613, 9876543, 768]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_SALARY (SALARY, EMP_ID) VALUES (?, ?)
    [junit] 	bind => [0.0, 121]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_SALARY (SALARY, EMP_ID) VALUES (?, ?)
    [junit] 	bind => [35000.0, 768]
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 78d7acde-b563-4eb9-9c3f-20fd47345f36
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--RETURN 78d7acde-b563-4eb9-9c3f-20fd47345f36 org.eclipse.persistence.jpars.test.model.employee.Employee id=121, firstName=Bill, lastName=Anderson
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PROJ_EMP WHERE (EMP_ID = ?)
    [junit] 	bind => [121]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PROJ_EMP WHERE (EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PHONENUMBER WHERE ((PHONE_TYPE = ?) AND (EMP_ID = ?))
    [junit] 	bind => [Home, 768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PHONENUMBER WHERE ((PHONE_TYPE = ?) AND (EMP_ID = ?))
    [junit] 	bind => [Work, 768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEE_EXPERTISE WHERE (ID = ?)
    [junit] 	bind => [12]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_RESPONS WHERE (Employee_EMP_ID = ?)
    [junit] 	bind => [121]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_RESPONS WHERE (Employee_EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PHONENUMBER WHERE (EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_SALARY WHERE (EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEE WHERE ((EMP_ID = ?) AND (VERSION = ?))
    [junit] 	bind => [768, 1]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEEADDRESS WHERE (ADDRESS_ID = ?)
    [junit] 	bind => [11]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_SALARY WHERE (EMP_ID = ?)
    [junit] 	bind => [121]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEE WHERE ((EMP_ID = ?) AND (VERSION = ?))
    [junit] 	bind => [121, 1]
    [junit] [EL Config]: metadata: The access type for the persistent class [class org.eclipse.persistence.jpars.test.model.basket.Basket] is set to [FIELD].
    [junit] [EL Config]: metadata: The target entity (reference) class for the one to many mapping element [field basketItems] is being defaulted to: class org.eclipse.persistence.jpars.test.model.basket.BasketItem.
    [junit] [EL Config]: metadata: The access type for the persistent class [class org.eclipse.persistence.jpars.test.model.basket.BasketItem] is set to [FIELD].
    [junit] [EL Config]: metadata: The target entity (reference) class for the many to one mapping element [field basket] is being defaulted to: class org.eclipse.persistence.jpars.test.model.basket.Basket.
    [junit] [EL Config]: metadata: The alias name for the entity class [class org.eclipse.persistence.jpars.test.model.basket.Basket] is being defaulted to: Basket.
    [junit] [EL Config]: metadata: The alias name for the entity class [class org.eclipse.persistence.jpars.test.model.basket.BasketItem] is being defaulted to: BasketItem.
    [junit] [EL Config]: metadata: The primary key column name for the mapping element [field basket] is being defaulted to: BASKET_ID.
    [junit] [EL Info]: EclipseLink, version: Eclipse Persistence Services - 2.7.15.v20240516-53511fdbd8
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_BASKET_ITEM DROP FOREIGN KEY FK_JPARS_BASKET_ITEM_BASKET_ID
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_BASKET
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_BASKET_ITEM
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_BASKET
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_BASKET_ITEM
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_BASKET
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_BASKET_ITEM
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_BASKET
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_BASKET_ITEM
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_BASKET
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: DROP TABLE JPARS_BASKET_ITEM
    [junit] [EL Fine]: sql: SELECT 1
    [junit] [EL Fine]: sql: CREATE TABLE JPARS_BASKET (BASKET_ID INTEGER NOT NULL, BASKET_NAME VARCHAR(255), PRIMARY KEY (BASKET_ID))
    [junit] [EL Fine]: sql: CREATE TABLE JPARS_BASKET_ITEM (ITEM_ID INTEGER NOT NULL, ITEM_NAME VARCHAR(255), ITEM_QTY INTEGER, BASKET_ID INTEGER, PRIMARY KEY (ITEM_ID))
    [junit] [EL Fine]: sql: ALTER TABLE JPARS_BASKET_ITEM ADD CONSTRAINT FK_JPARS_BASKET_ITEM_BASKET_ID FOREIGN KEY (BASKET_ID) REFERENCES JPARS_BASKET (BASKET_ID)
    [junit] [EL Warning]: moxy: MOXy BV: Facets generation could not be configured. EclipseLink's JavaModelInputImpl was not detected, instead JavaModelInput is of class: class org.eclipse.persistence.jaxb.javamodel.oxm.OXMJavaModelInputImpl
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.resources.common.AbstractPersistenceResource--getContextsInternal--ENTRY db82f20d-80e8-4311-91bd-bc2affa5c92e
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.resources.common.AbstractPersistenceResource--getContextsV2--ENTRY db82f20d-80e8-4311-91bd-bc2affa5c92e
    [junit] [EL Warning]: moxy: MOXy BV: Facets generation could not be configured. EclipseLink's JavaModelInputImpl was not detected, instead JavaModelInput is of class: class org.eclipse.persistence.jaxb.javamodel.oxm.OXMJavaModelInputImpl
    [junit] [EL Warning]: Ignoring attribute [teamLeader] on class [LargeProject] as no Property was generated for it.
    [junit] [EL Warning]: Ignoring attribute [teamLeader] on class [SmallProject] as no Property was generated for it.
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.resources.MetadataResource--buildEntityMetadataResponse--ENTRY 84fedfd0-5492-47ac-84dc-6d1fa5ea3783
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.resources.MetadataResource--buildQueryMetadataResponse--ENTRY 6243c9b1-767d-46f0-aa5e-6bbd3b7471fb
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.resources.MetadataResource--buildQuerySchemaResponse--ENTRY f7feb586-952d-4ec6-a140-7aa47fc7286e
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.resources.common.AbstractEntityResource--buildEntityOptionsResponse--ENTRY ee800741-418c-4121-abe3-0ced436773de
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.resources.MetadataResource--buildMetadataCatalogResponse--ENTRY d2bccc7c-d0ee-401f-bea4-e6c56b7ae6a2
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.resources.common.AbstractQueryResource--buildQueryOptionsResponse--ENTRY 119c4305-bf45-4325-8da5-63d0e6be0cd1
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.resources.MetadataResource--buildEntitySchemaResponse--ENTRY 964af6b5-1b02-44a0-a022-17011470f2bd
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.resources.MetadataResource--buildQuerySchemaResponse--ENTRY 58ee04d3-697e-489f-9bdf-bd4456f03cdb
    [junit] [EL Warning]: moxy: MOXy BV: Facets generation could not be configured. EclipseLink's JavaModelInputImpl was not detected, instead JavaModelInput is of class: class org.eclipse.persistence.jaxb.javamodel.oxm.OXMJavaModelInputImpl
    [junit] [EL Fine]: sql: INSERT INTO JPARS_ST_AUC_AUCTION (ID, DESCRIPTION, ENDPRICE, IMAGE, NAME, SOLD, STARTPRICE) VALUES (?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [1, Auction 1 description, 0.0, null, Auction 1, false, 1000.0]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_ST_AUC_USER (ID, NAME, VERSION, ADDRESS_TYPE, ADDRESS_ID) VALUES (?, ?, ?, ?, ?)
    [junit] 	bind => [2002, User 2002, 1, null, null]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_ST_AUC_BID (ID, AMOUNT, TIME, AUCTION_ID, USER_ID) VALUES (?, ?, ?, ?, ?)
    [junit] 	bind => [5678, 111.0, 1715860841540, 1, null]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_ST_AUC_BID (ID, AMOUNT, TIME, AUCTION_ID, USER_ID) VALUES (?, ?, ?, ?, ?)
    [junit] 	bind => [1001, 5000.0, 1715860841540, null, 2002]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_ST_AUC_BID (ID, AMOUNT, TIME, AUCTION_ID, USER_ID) VALUES (?, ?, ?, ?, ?)
    [junit] 	bind => [1234, 110.0, 1715860841540, 1, null]
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 58ee04d3-697e-489f-9bdf-bd4456f03cdb
    [junit] [EL Fine]: sql: SELECT ID FROM JPARS_ST_AUC_AUCTION WHERE (ID = ?)
    [junit] 	bind => [111]
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--RETURN 58ee04d3-697e-489f-9bdf-bd4456f03cdb org.eclipse.persistence.jpars.test.model.auction.StaticAuction org.eclipse.persistence.jpars.test.model.auction.StaticAuction@4aaecabd
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 58ee04d3-697e-489f-9bdf-bd4456f03cdb
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--RETURN 58ee04d3-697e-489f-9bdf-bd4456f03cdb org.eclipse.persistence.jpars.test.model.auction.StaticAuction org.eclipse.persistence.jpars.test.model.auction.StaticAuction@26da1ba2
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 58ee04d3-697e-489f-9bdf-bd4456f03cdb
    [junit] [EL Fine]: sql: SELECT ID FROM JPARS_ST_AUC_AUCTION WHERE (ID = ?)
    [junit] 	bind => [12]
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--RETURN 58ee04d3-697e-489f-9bdf-bd4456f03cdb org.eclipse.persistence.jpars.test.model.auction.StaticAuction org.eclipse.persistence.jpars.test.model.auction.StaticAuction@7d37ee0c
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 58ee04d3-697e-489f-9bdf-bd4456f03cdb
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--RETURN 58ee04d3-697e-489f-9bdf-bd4456f03cdb org.eclipse.persistence.jpars.test.model.auction.StaticBid org.eclipse.persistence.jpars.test.model.auction.StaticBid@5eb87338
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 58ee04d3-697e-489f-9bdf-bd4456f03cdb
    [junit] [EL Fine]: sql: SELECT ID FROM JPARS_ST_AUC_AUCTION WHERE (ID = ?)
    [junit] 	bind => [12]
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--RETURN 58ee04d3-697e-489f-9bdf-bd4456f03cdb org.eclipse.persistence.jpars.test.model.auction.StaticAuction org.eclipse.persistence.jpars.test.model.auction.StaticAuction@3a3f96ab
    [junit] [EL Fine]: sql: DELETE FROM JPARS_ST_AUC_BID WHERE (ID = ?)
    [junit] 	bind => [1001]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_ST_AUC_BID WHERE (ID = ?)
    [junit] 	bind => [1234]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_ST_AUC_BID WHERE (ID = ?)
    [junit] 	bind => [5678]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_ST_AUC_USER WHERE ((ID = ?) AND (VERSION = ?))
    [junit] 	bind => [2002, 1]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_ST_AUC_AUCTION WHERE (ID = ?)
    [junit] 	bind => [1]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEEADDRESS (ADDRESS_ID, AREAPICTURE, CITY, COUNTRY, P_CODE, PROVINCE, STREET) VALUES (?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [13, null, NYC, US, null, NY, null]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEE (EMP_ID, F_NAME, GENDER, L_NAME, VERSION, END_DATE, START_DATE, MANAGER_ID, OFFICE_ID, ADDR_ID) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [121, Bill, M, Anderson, 1, null, null, null, null, null]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEE (EMP_ID, F_NAME, GENDER, L_NAME, VERSION, END_DATE, START_DATE, MANAGER_ID, OFFICE_ID, ADDR_ID) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [768, John, M, Smith, 1, null, 2024-05-16, 121, null, 13]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEE_EXPERTISE (ID, SUBJECT, EMPLOYEE_EMP_ID) VALUES (?, ?, ?)
    [junit] 	bind => [14, REST, 121]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_PHONENUMBER (PHONE_TYPE, AREA_CODE, P_NUMBER, EMP_ID) VALUES (?, ?, ?, ?)
    [junit] 	bind => [Home, 613, 1234567, 768]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_PHONENUMBER (PHONE_TYPE, AREA_CODE, P_NUMBER, EMP_ID) VALUES (?, ?, ?, ?)
    [junit] 	bind => [Work, 613, 9876543, 768]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_SALARY (SALARY, EMP_ID) VALUES (?, ?)
    [junit] 	bind => [0.0, 121]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_SALARY (SALARY, EMP_ID) VALUES (?, ?)
    [junit] 	bind => [35000.0, 768]
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 58ee04d3-697e-489f-9bdf-bd4456f03cdb
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--RETURN 58ee04d3-697e-489f-9bdf-bd4456f03cdb org.eclipse.persistence.jpars.test.model.employee.Employee id=121, firstName=Bill, lastName=Anderson
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PROJ_EMP WHERE (EMP_ID = ?)
    [junit] 	bind => [121]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PROJ_EMP WHERE (EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PHONENUMBER WHERE ((PHONE_TYPE = ?) AND (EMP_ID = ?))
    [junit] 	bind => [Home, 768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PHONENUMBER WHERE ((PHONE_TYPE = ?) AND (EMP_ID = ?))
    [junit] 	bind => [Work, 768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEE_EXPERTISE WHERE (ID = ?)
    [junit] 	bind => [14]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_RESPONS WHERE (Employee_EMP_ID = ?)
    [junit] 	bind => [121]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_RESPONS WHERE (Employee_EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PHONENUMBER WHERE (EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_SALARY WHERE (EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEE WHERE ((EMP_ID = ?) AND (VERSION = ?))
    [junit] 	bind => [768, 1]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEEADDRESS WHERE (ADDRESS_ID = ?)
    [junit] 	bind => [13]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_SALARY WHERE (EMP_ID = ?)
    [junit] 	bind => [121]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEE WHERE ((EMP_ID = ?) AND (VERSION = ?))
    [junit] 	bind => [121, 1]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEEADDRESS (ADDRESS_ID, AREAPICTURE, CITY, COUNTRY, P_CODE, PROVINCE, STREET) VALUES (?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [15, null, NYC, US, null, NY, null]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEE (EMP_ID, F_NAME, GENDER, L_NAME, VERSION, END_DATE, START_DATE, MANAGER_ID, OFFICE_ID, ADDR_ID) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [121, Bill, M, Anderson, 1, null, null, null, null, null]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEE (EMP_ID, F_NAME, GENDER, L_NAME, VERSION, END_DATE, START_DATE, MANAGER_ID, OFFICE_ID, ADDR_ID) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
    [junit] 	bind => [768, John, M, Smith, 1, null, 2024-05-16, 121, null, 15]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_EMPLOYEE_EXPERTISE (ID, SUBJECT, EMPLOYEE_EMP_ID) VALUES (?, ?, ?)
    [junit] 	bind => [16, REST, 121]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_PHONENUMBER (PHONE_TYPE, AREA_CODE, P_NUMBER, EMP_ID) VALUES (?, ?, ?, ?)
    [junit] 	bind => [Home, 613, 1234567, 768]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_PHONENUMBER (PHONE_TYPE, AREA_CODE, P_NUMBER, EMP_ID) VALUES (?, ?, ?, ?)
    [junit] 	bind => [Work, 613, 9876543, 768]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_SALARY (SALARY, EMP_ID) VALUES (?, ?)
    [junit] 	bind => [0.0, 121]
    [junit] [EL Fine]: sql: INSERT INTO JPARS_SALARY (SALARY, EMP_ID) VALUES (?, ?)
    [junit] 	bind => [35000.0, 768]
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--ENTRY 58ee04d3-697e-489f-9bdf-bd4456f03cdb
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.PersistenceContext--unmarshalEntity--RETURN 58ee04d3-697e-489f-9bdf-bd4456f03cdb org.eclipse.persistence.jpars.test.model.employee.Employee id=121, firstName=Bill, lastName=Anderson
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PROJ_EMP WHERE (EMP_ID = ?)
    [junit] 	bind => [121]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PROJ_EMP WHERE (EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PHONENUMBER WHERE ((PHONE_TYPE = ?) AND (EMP_ID = ?))
    [junit] 	bind => [Home, 768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PHONENUMBER WHERE ((PHONE_TYPE = ?) AND (EMP_ID = ?))
    [junit] 	bind => [Work, 768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEE_EXPERTISE WHERE (ID = ?)
    [junit] 	bind => [16]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_RESPONS WHERE (Employee_EMP_ID = ?)
    [junit] 	bind => [121]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_RESPONS WHERE (Employee_EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_PHONENUMBER WHERE (EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_SALARY WHERE (EMP_ID = ?)
    [junit] 	bind => [768]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEE WHERE ((EMP_ID = ?) AND (VERSION = ?))
    [junit] 	bind => [768, 1]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEEADDRESS WHERE (ADDRESS_ID = ?)
    [junit] 	bind => [15]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_SALARY WHERE (EMP_ID = ?)
    [junit] 	bind => [121]
    [junit] [EL Fine]: sql: DELETE FROM JPARS_EMPLOYEE WHERE ((EMP_ID = ?) AND (VERSION = ?))
    [junit] 	bind => [121, 1]
    [junit] [EL Warning]: moxy: MOXy BV: Facets generation could not be configured. EclipseLink's JavaModelInputImpl was not detected, instead JavaModelInput is of class: class org.eclipse.persistence.jaxb.javamodel.oxm.OXMJavaModelInputImpl
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.resources.common.AbstractPersistenceResource--getContextsInternal--ENTRY d721cfe0-759d-4671-8ef6-31ffa6a55e01
    [junit] [EL Finest]: jpars: org.eclipse.persistence.jpa.rs.resources.common.AbstractPersistenceResource--getContextsV2--ENTRY d721cfe0-759d-4671-8ef6-31ffa6a55e01
    [junit] 
[junitreport] Processing /home/jenkins/agent/workspace/eclipselink-cb-2.7/jpa/eclipselink.jpars.test/reports/TESTS-TestSuites.xml to /home/jenkins/agent/workspace/eclipselink-cb-2.7/jpa/eclipselink.jpars.test/reports/junit-noframes.html
[junitreport] Loading stylesheet jar:file:/opt/java/apache-ant-1.10.13/lib/ant-junit.jar!/org/apache/tools/ant/taskdefs/optional/junit/xsl/junit-noframes.xsl
[junitreport] Transform time: 53ms

test-moxy-srg:
     [echo] moxytest.build.location = '/home/jenkins/agent/workspace/eclipselink-cb-2.7/moxy/eclipselink.moxy.test'
     [echo] moxytest.2.trunk.dir = '../..'
     [echo] oep.nosql.lib ='/home/jenkins/agent/workspace/eclipselink-cb-2.7/moxy/eclipselink.moxy.test/../../plugins/org.eclipse.persistence.nosql_2.7.15.v20240516-53511fdbd8.jar'

clean:
   [delete] Deleting directory /home/jenkins/agent/workspace/eclipselink-cb-2.7/moxy/eclipselink.moxy.test/build

compile-tests-against-jar:
     [echo] Compiling OXM tests...
    [mkdir] Created dir: /home/jenkins/agent/workspace/eclipselink-cb-2.7/moxy/eclipselink.moxy.test/build/classes
    [javac] /home/jenkins/agent/workspace/eclipselink-cb-2.7/moxy/eclipselink.moxy.test/antbuild.xml:1088: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
    [javac] Compiling 1299 source files to /home/jenkins/agent/workspace/eclipselink-cb-2.7/moxy/eclipselink.moxy.test/build/classes
    [javac] warning: [options] bootstrap class path not set in conjunction with -source 8
    [javac] Note: Some input files use or override a deprecated API.
    [javac] Note: Recompile with -Xlint:deprecation for details.
    [javac] Note: Some input files use unchecked or unsafe operations.
    [javac] Note: Recompile with -Xlint:unchecked for details.
    [javac] 1 warning
     [copy] Copying 897 files to /home/jenkins/agent/workspace/eclipselink-cb-2.7/moxy/eclipselink.moxy.test/build/classes
     [echo] 
     [echo] Compiling JAXB tests...
    [javac] /home/jenkins/agent/workspace/eclipselink-cb-2.7/moxy/eclipselink.moxy.test/antbuild.xml:1088: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
    [javac] Compiling 2762 source files to /home/jenkins/agent/workspace/eclipselink-cb-2.7/moxy/eclipselink.moxy.test/build/classes
    [javac] warning: [options] bootstrap class path not set in conjunction with -source 8
    [javac] Note: Some input files use or override a deprecated API.
    [javac] Note: Recompile with -Xlint:deprecation for details.
    [javac] Note: Some input files use unchecked or unsafe operations.
    [javac] Note: Recompile with -Xlint:unchecked for details.
    [javac] 1 warning
     [copy] Copying 2400 files to /home/jenkins/agent/workspace/eclipselink-cb-2.7/moxy/eclipselink.moxy.test/build/classes
     [copy] Copied 15 empty directories to 1 empty directory under /home/jenkins/agent/workspace/eclipselink-cb-2.7/moxy/eclipselink.moxy.test/build/classes
     [echo] Compiling MOXy unit tests...
    [javac] /home/jenkins/agent/workspace/eclipselink-cb-2.7/moxy/eclipselink.moxy.test/antbuild.xml:1088: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
    [javac] Compiling 4 source files to /home/jenkins/agent/workspace/eclipselink-cb-2.7/moxy/eclipselink.moxy.test/build/classes
    [javac] warning: [options] bootstrap class path not set in conjunction with -source 8
    [javac] Note: Some input files use or override a deprecated API.
    [javac] Note: Recompile with -Xlint:deprecation for details.
    [javac] 1 warning

compile-and-run-srg-tests-against-jar:
    [mkdir] Created dir: /home/jenkins/agent/workspace/eclipselink-cb-2.7/moxy/eclipselink.moxy.test/reports/srg/jaxb
    [mkdir] Created dir: /home/jenkins/agent/workspace/eclipselink-cb-2.7/moxy/eclipselink.moxy.test/build/test/tmp
    [junit] Running org.eclipse.persistence.testing.jaxb.JAXBSRGTestSuite
    [junit] removed existing: /home/jenkins/agent/workspace/eclipselink-cb-2.7/moxy/eclipselink.moxy.test/build/test/tmp/schema1.xsd
    [junit] Tests run: 627, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.608 sec
    [mkdir] Created dir: /home/jenkins/agent/workspace/eclipselink-cb-2.7/moxy/eclipselink.moxy.test/reports/srg/oxm/default
    [junit] Running org.eclipse.persistence.testing.oxm.OXMSRGTestSuite
    [junit] Local Exception Stack: 
    [junit] Exception [EclipseLink-25008] (Eclipse Persistence Services - 2.7.15.v20240516-53511fdbd8): org.eclipse.persistence.exceptions.XMLMarshalException
    [junit] Exception Description: A descriptor with default root element email-address was not found in the project
    [junit] 	at org.eclipse.persistence.exceptions.XMLMarshalException.noDescriptorWithMatchingRootElement(XMLMarshalException.java:164)
    [junit] 	at org.eclipse.persistence.internal.oxm.record.SAXUnmarshallerHandler.startElement(SAXUnmarshallerHandler.java:314)
    [junit] 	at org.eclipse.persistence.internal.oxm.record.DOMReader.reportElementEvents(DOMReader.java:198)
    [junit] 	at org.eclipse.persistence.internal.oxm.record.DOMReader.parse(DOMReader.java:96)
    [junit] 	at org.eclipse.persistence.internal.oxm.record.DOMReader.parse(DOMReader.java:103)
    [junit] 	at org.eclipse.persistence.internal.oxm.record.SAXUnmarshaller.unmarshal(SAXUnmarshaller.java:550)
    [junit] 	at org.eclipse.persistence.internal.oxm.record.SAXUnmarshaller.unmarshal(SAXUnmarshaller.java:541)
    [junit] 	at org.eclipse.persistence.internal.oxm.XMLUnmarshaller.unmarshal(XMLUnmarshaller.java:556)
    [junit] 	at org.eclipse.persistence.testing.oxm.xmlmarshaller.XMLUnmarshalTestCases.testUnmarshalNonRoot(XMLUnmarshalTestCases.java:704)
    [junit] 	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [junit] 	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    [junit] 	at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    [junit] 	at java.base/java.lang.reflect.Method.invoke(Method.java:566)
    [junit] 	at junit.framework.TestCase.runTest(TestCase.java:177)
    [junit] 	at junit.framework.TestCase.runBare(TestCase.java:142)
    [junit] 	at junit.framework.TestResult$1.protect(TestResult.java:122)
    [junit] 	at junit.framework.TestResult.runProtected(TestResult.java:142)
    [junit] 	at junit.framework.TestResult.run(TestResult.java:125)
    [junit] 	at junit.framework.TestCase.run(TestCase.java:130)
    [junit] 	at junit.framework.TestSuite.runTest(TestSuite.java:241)
    [junit] 	at junit.framework.TestSuite.run(TestSuite.java:236)
    [junit] 	at junit.framework.TestSuite.runTest(TestSuite.java:241)
    [junit] 	at junit.framework.TestSuite.run(TestSuite.java:236)
    [junit] 	at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.run(JUnitTestRunner.java:535)
    [junit] 	at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.launch(JUnitTestRunner.java:1197)
    [junit] 	at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.main(JUnitTestRunner.java:1042)
    [junit] Tests run: 240, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.193 sec

moxy-srg-junit-report:
[junitreport] Processing /home/jenkins/agent/workspace/eclipselink-cb-2.7/moxy/eclipselink.moxy.test/reports/srg/TESTS-TestSuites.xml to /home/jenkins/agent/workspace/eclipselink-cb-2.7/moxy/eclipselink.moxy.test/reports/srg/junit-noframes.html
[junitreport] Loading stylesheet jar:file:/opt/java/apache-ant-1.10.13/lib/ant-junit.jar!/org/apache/tools/ant/taskdefs/optional/junit/xsl/junit-noframes.xsl
[junitreport] Transform time: 67ms

test-srg-against-jar:

test-sdo-srg:
     [echo] sdotest.build.location = '/home/jenkins/agent/workspace/eclipselink-cb-2.7/sdo/eclipselink.sdo.test'
     [echo] sdotest.2.base.dir = '../..'

clean:

compile-sdo-tests-against-jar:
    [mkdir] Created dir: /home/jenkins/agent/workspace/eclipselink-cb-2.7/sdo/eclipselink.sdo.test/classes
    [javac] /home/jenkins/agent/workspace/eclipselink-cb-2.7/sdo/eclipselink.sdo.test/antbuild.xml:332: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
    [javac] Compiling 660 source files to /home/jenkins/agent/workspace/eclipselink-cb-2.7/sdo/eclipselink.sdo.test/classes
    [javac] warning: [options] bootstrap class path not set in conjunction with -source 8
    [javac] Note: Some input files use or override a deprecated API.
    [javac] Note: Recompile with -Xlint:deprecation for details.
    [javac] Note: Some input files use unchecked or unsafe operations.
    [javac] Note: Recompile with -Xlint:unchecked for details.
    [javac] 1 warning

test-srg-against-jar:
    [mkdir] Created dir: /home/jenkins/agent/workspace/eclipselink-cb-2.7/sdo/eclipselink.sdo.test/resource/tmp
    [mkdir] Created dir: /home/jenkins/agent/workspace/eclipselink-cb-2.7/sdo/eclipselink.sdo.test/reports/srg/true
     [echo] customContext=true
    [junit] Running org.eclipse.persistence.testing.sdo.SDOSRGTestSuite
    [junit] May 16, 2024 8:00:58 AM org.eclipse.persistence.sdo.helper.delegates.SDOTypeHelperDelegate getType
    [junit] INFO: Looking for : class org.eclipse.persistence.testing.sdo.helper.datafactory.SDODataFactoryExceptionTestCases
    [junit] May 16, 2024 8:00:58 AM org.eclipse.persistence.sdo.helper.delegates.SDOTypeHelperDelegate getType
    [junit] INFO: Not found: class org.eclipse.persistence.testing.sdo.helper.datafactory.SDODataFactoryExceptionTestCases
    [junit] Content of interfacesToSDOTypeHashMap: []
    [junit] Content of sdoTypeForSimpleJavaType: [class [Ljava.lang.Byte;, class java.lang.String, boolean, char, long, class java.lang.Byte, class java.math.BigDecimal, float, class java.lang.Integer, class java.lang.Long, short, class java.lang.Boolean, class java.math.BigInteger, class java.lang.Double, class [B, int, double, class java.util.Date, class java.lang.Character, class java.lang.Float, byte, class java.lang.Short]
    [junit] Content of typesHashMap: null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, interface org.eclipse.persistence.sdo.dataobjects.OpenSequencedType, null, null, null, null, 
    [junit] Content of anonymousTypes: null
    [junit] Content of commonjHashMap: class java.lang.String, class java.lang.String, class java.lang.String, class java.lang.String, class java.lang.String, int, class [B, class java.lang.String, class java.math.BigDecimal, interface commonj.sdo.ChangeSummary, class java.lang.String, boolean, null, short, char, class java.lang.String, double, interface java.util.List, class java.util.Date, class java.math.BigInteger, float, null, interface commonj.sdo.DataObject, class java.lang.String, class java.lang.String, byte, long, class java.lang.Object, class java.lang.String, 
    [junit] 
    [junit] May 16, 2024 8:00:58 AM org.eclipse.persistence.sdo.helper.delegates.SDOTypeHelperDelegate getType
    [junit] INFO: Looking for : interface org.eclipse.persistence.testing.sdo.helper.datafactory.USAddress
    [junit] May 16, 2024 8:00:58 AM org.eclipse.persistence.sdo.helper.delegates.SDOTypeHelperDelegate getType
    [junit] INFO: Not found: interface org.eclipse.persistence.testing.sdo.helper.datafactory.USAddress
    [junit] Content of interfacesToSDOTypeHashMap: []
    [junit] Content of sdoTypeForSimpleJavaType: [class [Ljava.lang.Byte;, class java.lang.String, boolean, char, long, class java.lang.Byte, class java.math.BigDecimal, float, class java.lang.Integer, class java.lang.Long, short, class java.lang.Boolean, class java.math.BigInteger, class java.lang.Double, class [B, int, double, class java.util.Date, class java.lang.Character, class java.lang.Float, byte, class java.lang.Short]
    [junit] Content of typesHashMap: null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, interface org.eclipse.persistence.sdo.dataobjects.OpenSequencedType, null, null, null, null, 
    [junit] Content of anonymousTypes: null
    [junit] Content of commonjHashMap: class java.lang.String, class java.lang.String, class java.lang.String, class java.lang.String, class java.lang.String, int, class [B, class java.lang.String, class java.math.BigDecimal, interface commonj.sdo.ChangeSummary, class java.lang.String, boolean, null, short, char, class java.lang.String, double, interface java.util.List, class java.util.Date, class java.math.BigInteger, float, null, interface commonj.sdo.DataObject, class java.lang.String, class java.lang.String, byte, long, class java.lang.Object, class java.lang.String, 
    [junit] 
    [junit] May 16, 2024 8:00:58 AM org.eclipse.persistence.sdo.helper.delegates.SDOTypeHelperDelegate getType
    [junit] INFO: Looking for : interface org.eclipse.persistence.testing.sdo.helper.datafactory.USAddress
    [junit] May 16, 2024 8:00:58 AM org.eclipse.persistence.sdo.helper.delegates.SDOTypeHelperDelegate getType
    [junit] INFO: interface org.eclipse.persistence.testing.sdo.helper.datafactory.USAddress was found in: typesHashMap.
    [junit] Tests run: 121, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.067 sec
    [junit] Error: 
    [junit] May 16, 2024 8:00:58 AM org.eclipse.persistence.sdo.helper.delegates.SDOTypeHelperDelegate getType
    [junit] INFO: Looking for : class org.eclipse.persistence.testing.sdo.helper.datafactory.SDODataFactoryExceptionTestCases
    [junit] May 16, 2024 8:00:58 AM org.eclipse.persistence.sdo.helper.delegates.SDOTypeHelperDelegate getType
    [junit] INFO: Not found: class org.eclipse.persistence.testing.sdo.helper.datafactory.SDODataFactoryExceptionTestCases
    [junit] Content of interfacesToSDOTypeHashMap: []
    [junit] Content of sdoTypeForSimpleJavaType: [class [Ljava.lang.Byte;, class java.lang.String, boolean, char, long, class java.lang.Byte, class java.math.BigDecimal, float, class java.lang.Integer, class java.lang.Long, short, class java.lang.Boolean, class java.math.BigInteger, class java.lang.Double, class [B, int, double, class java.util.Date, class java.lang.Character, class java.lang.Float, byte, class java.lang.Short]
    [junit] Content of typesHashMap: null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, interface org.eclipse.persistence.sdo.dataobjects.OpenSequencedType, null, null, null, null, 
    [junit] Content of anonymousTypes: null
    [junit] Content of commonjHashMap: class java.lang.String, class java.lang.String, class java.lang.String, class java.lang.String, class java.lang.String, int, class [B, class java.lang.String, class java.math.BigDecimal, interface commonj.sdo.ChangeSummary, class java.lang.String, boolean, null, short, char, class java.lang.String, double, interface java.util.List, class java.util.Date, class java.math.BigInteger, float, null, interface commonj.sdo.DataObject, class java.lang.String, class java.lang.String, byte, long, class java.lang.Object, class java.lang.String, 
    [junit] 
    [junit] May 16, 2024 8:00:58 AM org.eclipse.persistence.sdo.helper.delegates.SDOTypeHelperDelegate getType
    [junit] INFO: Looking for : interface org.eclipse.persistence.testing.sdo.helper.datafactory.USAddress
    [junit] May 16, 2024 8:00:58 AM org.eclipse.persistence.sdo.helper.delegates.SDOTypeHelperDelegate getType
    [junit] INFO: Not found: interface org.eclipse.persistence.testing.sdo.helper.datafactory.USAddress
    [junit] Content of interfacesToSDOTypeHashMap: []
    [junit] Content of sdoTypeForSimpleJavaType: [class [Ljava.lang.Byte;, class java.lang.String, boolean, char, long, class java.lang.Byte, class java.math.BigDecimal, float, class java.lang.Integer, class java.lang.Long, short, class java.lang.Boolean, class java.math.BigInteger, class java.lang.Double, class [B, int, double, class java.util.Date, class java.lang.Character, class java.lang.Float, byte, class java.lang.Short]
    [junit] Content of typesHashMap: null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, interface org.eclipse.persistence.sdo.dataobjects.OpenSequencedType, null, null, null, null, 
    [junit] Content of anonymousTypes: null
    [junit] Content of commonjHashMap: class java.lang.String, class java.lang.String, class java.lang.String, class java.lang.String, class java.lang.String, int, class [B, class java.lang.String, class java.math.BigDecimal, interface commonj.sdo.ChangeSummary, class java.lang.String, boolean, null, short, char, class java.lang.String, double, interface java.util.List, class java.util.Date, class java.math.BigInteger, float, null, interface commonj.sdo.DataObject, class java.lang.String, class java.lang.String, byte, long, class java.lang.Object, class java.lang.String, 
    [junit] 
    [junit] May 16, 2024 8:00:58 AM org.eclipse.persistence.sdo.helper.delegates.SDOTypeHelperDelegate getType
    [junit] INFO: Looking for : interface org.eclipse.persistence.testing.sdo.helper.datafactory.USAddress
    [junit] May 16, 2024 8:00:58 AM org.eclipse.persistence.sdo.helper.delegates.SDOTypeHelperDelegate getType
    [junit] INFO: interface org.eclipse.persistence.testing.sdo.helper.datafactory.USAddress was found in: typesHashMap.
    [junit] 
[junitreport] Processing /home/jenkins/agent/workspace/eclipselink-cb-2.7/sdo/eclipselink.sdo.test/reports/srg/true/TESTS-TestSuites.xml to /home/jenkins/agent/workspace/eclipselink-cb-2.7/sdo/eclipselink.sdo.test/reports/srg/true/junit-noframes.html
[junitreport] Loading stylesheet jar:file:/opt/java/apache-ant-1.10.13/lib/ant-junit.jar!/org/apache/tools/ant/taskdefs/optional/junit/xsl/junit-noframes.xsl
[junitreport] Transform time: 41ms
   [delete] Deleting directory /home/jenkins/agent/workspace/eclipselink-cb-2.7/sdo/eclipselink.sdo.test/resource/tmp

test-dbws-srg:
     [echo] JDK version detected: '11.0.11'
     [echo] java.version='11.0.11'
     [echo] dbws_test.build.location = '/home/jenkins/agent/workspace/eclipselink-cb-2.7/dbws/eclipselink.dbws.test'
     [echo] dbws_test.2.base.dir = '../..'
Trying to override old definition of task javac

clean:

compile:
    [mkdir] Created dir: /home/jenkins/agent/workspace/eclipselink-cb-2.7/dbws/eclipselink.dbws.test/classes
    [javac] /home/jenkins/agent/workspace/eclipselink-cb-2.7/dbws/eclipselink.dbws.test/antbuild.xml:386: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
    [javac] Compiling 2 source files to /home/jenkins/agent/workspace/eclipselink-cb-2.7/dbws/eclipselink.dbws.test/classes
    [javac] warning: [options] bootstrap class path not set in conjunction with -source 8
    [javac] Note: /home/jenkins/agent/workspace/eclipselink-cb-2.7/dbws/eclipselink.dbws.test/src/dbws/testing/xrdynamicentity/XRDynamicEntityTestSuite.java uses or overrides a deprecated API.
    [javac] Note: Recompile with -Xlint:deprecation for details.
    [javac] 1 warning

package:
      [jar] Building jar: /home/jenkins/agent/workspace/eclipselink-cb-2.7/dbws/eclipselink.dbws.test/eclipselink-dbws-test-common.jar

build:

compile-common:

run-tests:
    [mkdir] Created dir: /home/jenkins/agent/workspace/eclipselink-cb-2.7/dbws/eclipselink.dbws.test/reports
      [sql] Executing resource: /home/jenkins/agent/workspace/eclipselink-cb-2.7/dbws/eclipselink.dbws.test/etc/dbsetup_keymappings.sql
      [sql] 11 of 11 SQL statements executed successfully
    [javac] /home/jenkins/agent/workspace/eclipselink-cb-2.7/dbws/eclipselink.dbws.test/antbuild.xml:218: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
    [junit] Running dbws.testing.keymappings.KeyMappingsTestSuite
    [junit] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.102 sec
[junitreport] Processing /home/jenkins/agent/workspace/eclipselink-cb-2.7/dbws/eclipselink.dbws.test/reports/TESTS-TestSuites.xml to /home/jenkins/agent/workspace/eclipselink-cb-2.7/dbws/eclipselink.dbws.test/reports/junit-noframes.html
[junitreport] Loading stylesheet jar:file:/opt/java/apache-ant-1.10.13/lib/ant-junit.jar!/org/apache/tools/ant/taskdefs/optional/junit/xsl/junit-noframes.xsl
[junitreport] Transform time: 39ms
      [sql] Executing resource: /home/jenkins/agent/workspace/eclipselink-cb-2.7/dbws/eclipselink.dbws.test/etc/dbteardown_keymappings.sql
      [sql] 3 of 3 SQL statements executed successfully
      [sql] Executing resource: /home/jenkins/agent/workspace/eclipselink-cb-2.7/dbws/eclipselink.dbws.test/etc/dbsetup_relationships.sql
      [sql] 75 of 75 SQL statements executed successfully
    [javac] /home/jenkins/agent/workspace/eclipselink-cb-2.7/dbws/eclipselink.dbws.test/antbuild.xml:218: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
    [junit] Running dbws.testing.relationships.RelationshipsTestSuite
    [junit] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.099 sec
[junitreport] Processing /home/jenkins/agent/workspace/eclipselink-cb-2.7/dbws/eclipselink.dbws.test/reports/TESTS-TestSuites.xml to /home/jenkins/agent/workspace/eclipselink-cb-2.7/dbws/eclipselink.dbws.test/reports/junit-noframes.html
[junitreport] Loading stylesheet jar:file:/opt/java/apache-ant-1.10.13/lib/ant-junit.jar!/org/apache/tools/ant/taskdefs/optional/junit/xsl/junit-noframes.xsl
[junitreport] Transform time: 54ms
      [sql] Executing resource: /home/jenkins/agent/workspace/eclipselink-cb-2.7/dbws/eclipselink.dbws.test/etc/dbteardown_relationships.sql
      [sql] 5 of 5 SQL statements executed successfully
    [javac] /home/jenkins/agent/workspace/eclipselink-cb-2.7/dbws/eclipselink.dbws.test/antbuild.xml:218: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
    [javac] Compiling 1 source file to /home/jenkins/agent/workspace/eclipselink-cb-2.7/dbws/eclipselink.dbws.test/classes
    [javac] warning: [options] bootstrap class path not set in conjunction with -source 8
    [javac] 1 warning
    [junit] Running dbws.testing.xrdynamicentity.XRDynamicEntityTestSuite
    [junit] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.138 sec
[junitreport] Processing /home/jenkins/agent/workspace/eclipselink-cb-2.7/dbws/eclipselink.dbws.test/reports/TESTS-TestSuites.xml to /home/jenkins/agent/workspace/eclipselink-cb-2.7/dbws/eclipselink.dbws.test/reports/junit-noframes.html
[junitreport] Loading stylesheet jar:file:/opt/java/apache-ant-1.10.13/lib/ant-junit.jar!/org/apache/tools/ant/taskdefs/optional/junit/xsl/junit-noframes.xsl
[junitreport] Transform time: 61ms

test:

test-dbws-builder-srg:
     [echo] dbwsbldrtest.build.location = '/home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test'
     [echo] dbwsbldrtest.2.base.dir = '../..'
     [echo] Loading /home/jenkins/build.properties...
     [echo] Custom properties file '/home/jenkins/test.properties' not found to load.

clean:

init:
     [echo] junit.lib    ='/home/jenkins/extension.lib.external/junit-4.13.2.jar:/home/jenkins/extension.lib.external/hamcrest-core-1.3.jar:/home/jenkins/extension.lib.external/jmockit-1.35.jar'
     [echo] asm.jar      ='/home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/../../plugins/org.eclipse.persistence.asm.jar'
     [echo] dbwsbldr.jar ='/home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/../../plugins/org.eclipse.persistence.dbws.builder_2.7.15.v20240516-53511fdbd8.jar'
     [echo] servlet-api.jar  ='/home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/../../plugins/jakarta.servlet-api.jar'
     [echo] ddlparser.jar='/home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/../plugins/org.eclipse.persistence.oracleddlparser_3.0.1.v20230424.jar'
     [echo] wsdl.jar     ='/home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/../plugins/javax.wsdl_1.6.2.v201012040545.jar'
     [echo] persistence.jar ='/home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/../../plugins/javax.persistence_unsigned_for_testing_1.0.0.jar'
     [echo] persistence20_21_diff.jar ='../../build/javax.persistence20_21_diff.jar'
     [echo] gmbal.lib =/home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/../../plugins/gmbal.jar
     [echo] javax.activation.lib =/home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/../../plugins/jakarta.activation.jar
     [echo] javax.annotation.lib =/home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/../../plugins/jakarta.annotation-api.jar
     [echo] javax.validation.lib =/home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/../../plugins/jakarta.validation-api.jar
     [echo] javax.xml.binding.lib =/home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/../../plugins/jakarta.xml.bind-api.jar
     [echo] javax.xml.soap.lib =/home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/../../plugins/jakarta.xml.soap-api.jar
     [echo] javax.xml.ws.lib =/home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/../../plugins/jakarta.xml.ws-api.jar
     [echo] jaxb-impl.lib =/home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/../../plugins/jaxb-impl.jar
     [echo] jws-api.lib =/home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/../../plugins/jakarta.jws-api.jar
     [echo] saaj-impl.lib =/home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/../../plugins/com.sun.saaj-impl.jar
     [echo] stax-ex.lib =/home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/../../plugins/stax-ex.jar
     [echo] streambuffer.lib =/home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/../../plugins/com.sun.streambuffer.jar
     [echo] ws-policy.lib =/home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/../../plugins/com.sun.xml.ws.policy.jar
     [echo] ws-rt.lib =/home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/../../plugins/com.sun.ws-rt.jar

compile:
    [mkdir] Created dir: /home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/classes
    [javac] /home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/antbuild.xml:344: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
    [javac] Compiling 21 source files to /home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/classes
    [javac] warning: [options] bootstrap class path not set in conjunction with -source 8
    [javac] 1 warning

package:
      [jar] Building jar: /home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/eclipselink-dbwsbldr-tests.jar

build:

init-tests:
     [echo] jdbc.driver.jar  ='/home/jenkins/extension.lib.external/mysql-connector-j-8.2.0.jar'
     [echo] dbwsbldrtest.jar ='./eclipselink-dbwsbldr-tests.jar'
     [echo] mail.jar         ='/home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/../../plugins/jakarta.mail.jar'

run-tests:
    [mkdir] Created dir: /home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/reports
    [junit] Running dbws.testing.attachedbinary.AttachedBinaryTestSuite
    [junit] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.856 sec
    [junit] Output:
    [junit] [EL Warning]: moxy: 2024-05-16 12:01:07.767--MOXy BV: Facets generation could not be configured. EclipseLink's JavaModelInputImpl was not detected, instead JavaModelInput is of class: class org.eclipse.persistence.jaxb.javamodel.oxm.OXMJavaModelInputImpl
    [junit] 
    [junit] Running dbws.testing.batchsql.BatchSQLTestSuite
    [junit] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.235 sec
    [junit] Running dbws.testing.bindingmodel.BindingModelTestSuite
    [junit] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.057 sec
    [junit] Running dbws.testing.crud.CRUDTestSuite
    [junit] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.199 sec
    [junit] Running dbws.testing.customsql.CustomSQLTestSuite
    [junit] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.204 sec
    [junit] Running dbws.testing.inlinebinary.InlineBinaryTestSuite
    [junit] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.187 sec
    [junit] Running dbws.testing.invalidinput.InvalidInputTestSuite
    [junit] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.055 sec
    [junit] Running dbws.testing.loglevelvalidation.LogLevelValidationTestSuite
    [junit] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.142 sec
    [junit] Running dbws.testing.mtom.MTOMTestSuite
    [junit] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.089 sec
    [junit] Error: 
    [junit] May 16, 2024 12:01:09 PM com.sun.xml.ws.server.MonitorBase createMOM
    [junit] WARNING: Ignoring exception - starting up without monitoring
    [junit] java.lang.NoClassDefFoundError: org/glassfish/pfl/basic/facet/FacetAccessor
    [junit] 	at java.base/java.lang.Class.forName0(Native Method)
    [junit] 	at java.base/java.lang.Class.forName(Class.java:315)
    [junit] 	at org.glassfish.gmbal.util.GenericConstructor.getConstructor(GenericConstructor.java:58)
    [junit] 	at org.glassfish.gmbal.util.GenericConstructor.create(GenericConstructor.java:90)
    [junit] 	at org.glassfish.gmbal.ManagedObjectManagerFactory.createStandalone(ManagedObjectManagerFactory.java:75)
    [junit] 	at com.sun.xml.ws.server.MonitorBase.createMOM(MonitorBase.java:193)
    [junit] 	at com.sun.xml.ws.server.MonitorBase.createMOMLoop(MonitorBase.java:181)
    [junit] 	at com.sun.xml.ws.server.MonitorBase.createManagedObjectManager(MonitorBase.java:104)
    [junit] 	at com.sun.xml.ws.server.WSEndpointImpl.obtainManagedObjectManager(WSEndpointImpl.java:523)
    [junit] 	at com.sun.xml.ws.server.WSEndpointImpl.initManagedObjectManager(WSEndpointImpl.java:503)
    [junit] 	at com.sun.xml.ws.server.WSEndpointImpl.<init>(WSEndpointImpl.java:121)
    [junit] 	at com.sun.xml.ws.server.EndpointFactory.create(EndpointFactory.java:307)
    [junit] 	at com.sun.xml.ws.server.EndpointFactory.create(EndpointFactory.java:302)
    [junit] 	at com.sun.xml.ws.server.EndpointFactory.createEndpoint(EndpointFactory.java:134)
    [junit] 	at com.sun.xml.ws.api.server.WSEndpoint.create(WSEndpoint.java:578)
    [junit] 	at com.sun.xml.ws.api.server.WSEndpoint.create(WSEndpoint.java:560)
    [junit] 	at com.sun.xml.ws.transport.http.server.EndpointImpl.createEndpoint(EndpointImpl.java:304)
    [junit] 	at com.sun.xml.ws.transport.http.server.EndpointImpl.publish(EndpointImpl.java:217)
    [junit] 	at dbws.testing.mtom.MTOMTestSuite.setUp(MTOMTestSuite.java:334)
    [junit] 	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [junit] 	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    [junit] 	at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    [junit] 	at java.base/java.lang.reflect.Method.invoke(Method.java:566)
    [junit] 	at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59)
    [junit] 	at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
    [junit] 	at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56)
    [junit] 	at org.junit.internal.runners.statements.RunBefores.invokeMethod(RunBefores.java:33)
    [junit] 	at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:24)
    [junit] 	at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
    [junit] 	at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
    [junit] 	at org.junit.runners.ParentRunner.run(ParentRunner.java:413)
    [junit] 	at junit.framework.JUnit4TestAdapter.run(JUnit4TestAdapter.java:50)
    [junit] 	at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.run(JUnitTestRunner.java:535)
    [junit] 	at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.launch(JUnitTestRunner.java:1197)
    [junit] 	at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.main(JUnitTestRunner.java:1015)
    [junit] Caused by: java.lang.ClassNotFoundException: org.glassfish.pfl.basic.facet.FacetAccessor
    [junit] 	at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:581)
    [junit] 	at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178)
    [junit] 	at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:522)
    [junit] 	... 35 more
    [junit] 
    [junit] 
    [junit] Running dbws.testing.namingtransformer.NamingTransformerTestSuite
    [junit] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.14 sec
    [junit] Running dbws.testing.optlock.OptLockTestSuite
    [junit] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.182 sec
    [junit] Running dbws.testing.rootcause.RootCauseTestSuite
    [junit] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.223 sec
    [junit] Running dbws.testing.secondarysql.SecondarySQLTestSuite
    [junit] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.28 sec
    [junit] Running dbws.testing.simplesp.SimpleSPTestSuite
    [junit] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.201 sec
    [junit] Running dbws.testing.simpletable.SimpleTableTestSuite
    [junit] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.116 sec
    [junit] Running dbws.testing.simpletablewithnestedsql.SimpleTableWithNestedSQLTestSuite
    [junit] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.074 sec
    [junit] Running dbws.testing.soap12.SOAP12TestSuite
    [junit] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.551 sec
    [junit] Running dbws.testing.sqlascollection.SQLAsCollectionTestSuite
    [junit] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.182 sec
    [junit] Running dbws.testing.updatefault.UpdateFaultTestSuite
    [junit] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.166 sec
[junitreport] Processing /home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/reports/TESTS-TestSuites.xml to /home/jenkins/agent/workspace/eclipselink-cb-2.7/utils/eclipselink.dbws.builder.test/reports/junit-noframes.html
[junitreport] Loading stylesheet jar:file:/opt/java/apache-ant-1.10.13/lib/ant-junit.jar!/org/apache/tools/ant/taskdefs/optional/junit/xsl/junit-noframes.xsl
[junitreport] Transform time: 326ms

test:

generate-report:
    [mkdir] Created dir: /home/jenkins/agent/workspace/eclipselink-cb-2.7/target/reports
[junitreport] Processing /home/jenkins/agent/workspace/eclipselink-cb-2.7/target/reports/TESTS-TestSuites.xml to /tmp/null1856919374
[junitreport] Loading stylesheet jar:file:/opt/java/apache-ant-1.10.13/lib/ant-junit.jar!/org/apache/tools/ant/taskdefs/optional/junit/xsl/junit-frames.xsl
[junitreport] Transform time: 872ms
[junitreport] Deleting: /tmp/null1856919374
[junitreport] Processing /home/jenkins/agent/workspace/eclipselink-cb-2.7/target/reports/TESTS-TestSuites.xml to /home/jenkins/agent/workspace/eclipselink-cb-2.7/target/reports/junit-noframes.html
[junitreport] Loading stylesheet jar:file:/opt/java/apache-ant-1.10.13/lib/ant-junit.jar!/org/apache/tools/ant/taskdefs/optional/junit/xsl/junit-noframes.xsl
[junitreport] Transform time: 606ms
     [echo] Browse results at /home/jenkins/agent/workspace/eclipselink-cb-2.7/target/reports/index.html
     [echo] Browse results at /home/jenkins/agent/workspace/eclipselink-cb-2.7/target/reports/junit-noframes.html

test-srg:

build-continuous:

BUILD SUCCESSFUL
Total time: 6 minutes 34 seconds
[16.05.2024 12:01:16] -[ Stopping MySQL Database ]------------------------------
[16.05.2024 12:01:16] --[ Waiting for MySQL Database to stop ]------------------
 done
[Pipeline] }
[Pipeline] // container
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Publish to snapshots)
[Pipeline] tool
[Pipeline] envVarsForTool
[Pipeline] withEnv
[Pipeline] {
[Pipeline] container
[Pipeline] {
[Pipeline] sh
+ etc/jenkins/publish_snapshots.sh
-[ EclipseLink Publish to Jakarta Snapshots ]-----------------------------------------------------------
-[ EclipseLink Continuous Build -> No publishing any artifacts to Jakarta Snapshots]-------------------------------
[Pipeline] }
[Pipeline] // container
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Publish to nightly)
[Pipeline] tool
[Pipeline] envVarsForTool
[Pipeline] withEnv
[Pipeline] {
[Pipeline] sshagent
[ssh-agent] Using credentials genie.eclipselink (ssh://genie.eclipselink@projects-storage.eclipse.org)
[ssh-agent] Looking for ssh-agent implementation...
[ssh-agent]   Exec ssh-agent (binary ssh-agent on a remote machine)
$ ssh-agent
SSH_AUTH_SOCK=/tmp/ssh-8bRWStoYlr9a/agent.258
SSH_AGENT_PID=260
Running ssh-add (command line suppressed)
Identity added: /home/jenkins/agent/workspace/eclipselink-cb-2.7@tmp/private_key_13302496125551747508.key (/home/jenkins/agent/workspace/eclipselink-cb-2.7@tmp/private_key_13302496125551747508.key)
[ssh-agent] Started.
[Pipeline] {
[Pipeline] sh
+ etc/jenkins/publish_nightly.sh
-[ EclipseLink Continuous Build -> No publishing any artifacts]-------------------------------
[Pipeline] }
$ ssh-agent -k
unset SSH_AUTH_SOCK;
unset SSH_AGENT_PID;
echo Agent pid 260 killed;
[ssh-agent] Stopped.
[Pipeline] // sshagent
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // stage
[Pipeline] stage
[Pipeline] { (Proceed test results)
[Pipeline] tool
[Pipeline] envVarsForTool
[Pipeline] withEnv
[Pipeline] {
[Pipeline] script
[Pipeline] {
[Pipeline] echo
Processing file: dbws/**/reports/**/TESTS-TestSuites.xml
[Pipeline] retry
[Pipeline] {
[Pipeline] junit
Recording test results
[Checks API] No suitable checks publisher found.
[Pipeline] }
[Pipeline] // retry
[Pipeline] echo
Processing file: foundation/**/reports/**/TESTS-TestSuites.xml
[Pipeline] retry
[Pipeline] {
[Pipeline] junit
Recording test results
[Checks API] No suitable checks publisher found.
[Pipeline] }
[Pipeline] // retry
[Pipeline] echo
Processing file: jpa/**/reports/**/TESTS-TestSuites.xml
[Pipeline] retry
[Pipeline] {
[Pipeline] junit
Recording test results
[Checks API] No suitable checks publisher found.
[Pipeline] }
[Pipeline] // retry
[Pipeline] echo
Processing file: moxy/**/reports/installer/TESTS-TestSuites.xml
[Pipeline] retry
[Pipeline] {
[Pipeline] junit
Recording test results
None of the test reports contained any result
[Checks API] No suitable checks publisher found.
[Pipeline] }
[Pipeline] // retry
No test report files were found. Configuration error?
[Pipeline] echo
Processing file: moxy/**/reports/jaxb/TESTS-TestSuites.xml
[Pipeline] retry
[Pipeline] {
[Pipeline] junit
Recording test results
None of the test reports contained any result
[Checks API] No suitable checks publisher found.
[Pipeline] }
[Pipeline] // retry
No test report files were found. Configuration error?
[Pipeline] echo
Processing file: moxy/**/reports/oxm/TESTS-TestSuites.xml
[Pipeline] retry
[Pipeline] {
[Pipeline] junit
Recording test results
None of the test reports contained any result
[Checks API] No suitable checks publisher found.
[Pipeline] }
[Pipeline] // retry
No test report files were found. Configuration error?
[Pipeline] echo
Processing file: moxy/**/reports/srg/TESTS-TestSuites.xml
[Pipeline] retry
[Pipeline] {
[Pipeline] junit
Recording test results
[Checks API] No suitable checks publisher found.
[Pipeline] }
[Pipeline] // retry
[Pipeline] echo
Processing file: sdo/**/reports/**/TESTS-TestSuites.xml
[Pipeline] retry
[Pipeline] {
[Pipeline] junit
Recording test results
[Checks API] No suitable checks publisher found.
[Pipeline] }
[Pipeline] // retry
[Pipeline] echo
Processing file: utils/**/reports/**/TESTS-TestSuites.xml
[Pipeline] retry
[Pipeline] {
[Pipeline] junit
Recording test results
[Checks API] No suitable checks publisher found.
[Pipeline] }
[Pipeline] // retry
[Pipeline] }
[Pipeline] // script
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // node
[Pipeline] }
[Pipeline] // podTemplate
[Pipeline] End of Pipeline
Finished: SUCCESS