[hibernate-issues] [Hibernate-JIRA] Resolved: (HV-15) @Past validation annotation generates incorrect DDL for Oracle 8.x

Emmanuel Bernard (JIRA) noreply at atlassian.com
Thu Aug 14 14:39:10 EDT 2008


     [ http://opensource.atlassian.com/projects/hibernate/browse/HV-15?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Emmanuel Bernard resolved HV-15.
--------------------------------

       Resolution: Duplicate
    Fix Version/s: 3.1.0.CR2

Dupe of HV-65

> @Past validation annotation generates incorrect DDL for Oracle 8.x
> ------------------------------------------------------------------
>
>                 Key: HV-15
>                 URL: http://opensource.atlassian.com/projects/hibernate/browse/HV-15
>             Project: Hibernate Validator
>          Issue Type: Bug
>          Components: engine
>         Environment: Hibernate 3.0.5
> Oracle 8.1.7 (running on Win XP Pro)
>            Reporter: Aye Thu
>            Priority: Minor
>             Fix For: 3.1.0.CR2
>
>
> The following validation code:
>     @Past
>     public Date getBirthDate()
>     {
>         return birthDate;
>     } 
> produces the following DDL when using the OracleDialect:
> create table Person (party_id number(19,0) not null, birth_date date check (birth_date < current_date), primary key (party_id)) 
> The "current_date" was introduced only in Oracle 9i and is not available in earlier Oracle versions and the following SQL exception is thrown:
> ORA-02438: Column check constraint cannot reference other columns 
> According to Gavin, the current validation framework is not aware of Dialects. (http://forum.hibernate.org/viewtopic.php?t=943378)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the hibernate-issues mailing list