[hibernate-issues] [Hibernate-JIRA] Created: (HHH-5556) @Column annotation - nullable default value

Daniel Migowski (JIRA) noreply at atlassian.com
Sun Sep 12 02:30:18 EDT 2010


@Column annotation - nullable default value
-------------------------------------------

                 Key: HHH-5556
                 URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-5556
             Project: Hibernate Core
          Issue Type: Bug
         Environment: Hibernate 3.3.1, PostgreSQL 8.3
            Reporter: Daniel Migowski


We have an entity attribute like this:

    @Column(updateble=false)
    double quantityInInvoice;

This column is considered nullable in the Hibernate meta data because the @Column annotation contains another attribute named "nullable" which defaults to true. 

I don't know if this is an specification error but for primitive datatypes the column should never be nullable IMHO. We found this out because we modified Hibernate locally to create and update the NOT NULL contraints on tables in the database.

Workaround: Set nullable=false explicitely in the @Column annotation.

-- 
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