Issue Type: Bug Bug
Affects Versions: 5.0.0
Assignee: Hardy Ferentschik
Components: metamodel
Created: 03/Aug/12 6:56 PM
Description:

I am not quite what the following code in the old configuration approach does. This needs to be verified and tests added:

if ( !( property.getPersistentClass() instanceof SingleTableSubclass ) ) {
			//single table should not be forced to null
			if ( !property.isComposite() ) { //composite should not add not-null on all columns
				@SuppressWarnings("unchecked")
				Iterator<Column> iter = property.getColumnIterator();
				while ( iter.hasNext() ) {
					iter.next().setNullable( false );

				}
			}
		}
Fix Versions: 5.0.0
Project: Hibernate ORM
Priority: Major Major
Reporter: Hardy Ferentschik
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira