Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[eclipselink-dev] JPA team: SRG failures on latest 1.1.3 ContinuousBuild...

I'm seeing test failures on the JPA suite for 1.1.3 only during the CB, upon investigation they appear valid failures resulting from a test setup failure (eclipselink2.CMP3_EMPLOYEE doesn't exist - pertinent log selection is below).

I am uncertain why these errors are only occurring on the cb.Perhaps the setup moved to the LRG, or these tests migrated to the SRG and the setup is only run for LRG suite?

As additional information:
- every build starts after the schema used has been dropped and recreated.
- every branch utilizes a different schema (eclipselink2 for 1.1.3, eclipselink for trunk) - there is no "build collision" occurring on same branch builds (nightly finished before 4am, and the 6:30a CB finished in 12 min.
  In general, cbs kick off every hour, and again finish within 15 minutes).

-Eric

----------------------------------------------------------------------------------
[junit] [EL Warning]: UnitOfWork(548413616)--Exception [EclipseLink-4002] (Eclipse Persistence Services - 1.1.3.v20090818-r4889): org.eclipse.persistence.exceptions.DatabaseException [junit] Internal Exception: com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: Table 'eclipselink2.CMP3_EMPLOYEE' doesn't exist
   [junit] Error Code: 1146
[junit] Call: SELECT t1.EMP_ID, t2.EMP_ID, t1.GENDER, t1.L_NAME, t1.PAY_SCALE, t1.ROOM_NUM, t2.SALARY, t1.STATUS, t1.VERSION, t1.F_NAME, t1.START_DATE, t1.END_DATE, t1.START_TIME, t1.END_TIME, t1.START_OVERTIME, t1.END_OVERTIME, t1.FORMER_COMPANY, t1.FORMER_START_DATE, t1.FORMER_END_DATE, t1.DEPT_ID, t1.MANAGER_EMP_ID, t1.ADDR_ID, t0.ID, t0.NAME FROM CMP3_EMPLOYEE t1 LEFT OUTER JOIN CMP3_DEPT t0 ON (t0.ID = t1.DEPT_ID), CMP3_SALARY t2 WHERE (t2.EMP_ID = t1.EMP_ID) [junit] Query: ReadAllQuery(referenceClass=Employee sql="SELECT t1.EMP_ID, t2.EMP_ID, t1.GENDER, t1.L_NAME, t1.PAY_SCALE, t1.ROOM_NUM, t2.SALARY, t1.STATUS, t1.VERSION, t1.F_NAME, t1.START_DATE, t1.END_DATE, t1.START_TIME, t1.END_TIME, t1.START_OVERTIME, t1.END_OVERTIME, t1.FORMER_COMPANY, t1.FORMER_START_DATE, t1.FORMER_END_DATE, t1.DEPT_ID, t1.MANAGER_EMP_ID, t1.ADDR_ID, t0.ID, t0.NAME FROM CMP3_EMPLOYEE t1 LEFT OUTER JOIN CMP3_DEPT t0 ON (t0.ID = t1.DEPT_ID), CMP3_SALARY t2 WHERE (t2.EMP_ID = t1.EMP_ID)") [junit] Internal Exception: com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: Table 'eclipselink2.CMP3_EMPLOYEE' doesn't exist
   [junit] Error Code: 1146
[junit] Call: SELECT t1.EMP_ID, t2.EMP_ID, t1.GENDER, t1.L_NAME, t1.PAY_SCALE, t1.ROOM_NUM, t2.SALARY, t1.STATUS, t1.VERSION, t1.F_NAME, t1.START_DATE, t1.END_DATE, t1.START_TIME, t1.END_TIME, t1.START_OVERTIME, t1.END_OVERTIME, t1.FORMER_COMPANY, t1.FORMER_START_DATE, t1.FORMER_END_DATE, t1.DEPT_ID, t1.MANAGER_EMP_ID, t1.ADDR_ID, t0.ID, t0.NAME FROM CMP3_EMPLOYEE t1 LEFT OUTER JOIN CMP3_DEPT t0 ON (t0.ID = t1.DEPT_ID), CMP3_SALARY t2 WHERE (t2.EMP_ID = t1.EMP_ID) [junit] Query: ReadAllQuery(referenceClass=Employee sql="SELECT t1.EMP_ID, t2.EMP_ID, t1.GENDER, t1.L_NAME, t1.PAY_SCALE, t1.ROOM_NUM, t2.SALARY, t1.STATUS, t1.VERSION, t1.F_NAME, t1.START_DATE, t1.END_DATE, t1.START_TIME, t1.END_TIME, t1.START_OVERTIME, t1.END_OVERTIME, t1.FORMER_COMPANY, t1.FORMER_START_DATE, t1.FORMER_END_DATE, t1.DEPT_ID, t1.MANAGER_EMP_ID, t1.ADDR_ID, t0.ID, t0.NAME FROM CMP3_EMPLOYEE t1 LEFT OUTER JOIN CMP3_DEPT t0 ON (t0.ID = t1.DEPT_ID), CMP3_SALARY t2 WHERE (t2.EMP_ID = t1.EMP_ID)"))
   [junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 5.449 sec
[junit] Test org.eclipse.persistence.testing.tests.jpa.advanced.EntityManagerJUnitTestSuite FAILED



Back to the top