{{org.hibernate.id.CreateDeleteTest.createAndDeleteAnEntityInTheSameTransactionTest}} {{org.hibernate.id.FlushIdGenTest.testPersistBeforeTransaction}}
Both test tests use the same entity {{org.hibernate.id.RootEntity}}. This entity has only primary key column {{universalid}}} and nothing else.
{code} 16:40:07,685 DEBUG SQL:94 - create table RootEntity ( universalid number(19,0) generated as identity, primary key (universalid) ) {code}
{{INSERT}} into such table fails with {{ORA-00936: missing expression}} {code} 16:40:07,744 DEBUG SQL:94 - insert into RootEntity values ( ) Hibernate: insert into RootEntity values ( ) 16:40:07,750 WARN SqlExceptionHelper:137 - SQL Error: 936, SQLState: 42000 16:40:07,750 ERROR SqlExceptionHelper:142 - ORA-00936: missing expression {code}
There should be at least one other column. |
|