Also, the database scheme is predefined and not automatically created by hibernate.
For reference, here the DDL for the table, modified to fit the test case:
{code:sql} CREATE TABLE "EXPLICIT_DATE" ( "ID" NUMBER, "NAME" VARCHAR2(1020 BYTE), "THE_DATE" NUMBER(19,0) ) ; CREATE UNIQUE INDEX "EXPLICIT_DATE_PK" ON "EXPLICIT_DATE" ("ID"); {code}
|