if (column != null)
{
// Default Length
if (getJavaTypeMapping() instanceof SingleFieldMapping && column.getColumnMetaData().getLength() == null)
{
SingleFieldMapping m = (SingleFieldMapping) getJavaTypeMapping();
if (m.getDefaultLength(0) > 0)
{
// No column length provided by user and the type has a default length so use it
column.getColumnMetaData().setLength(m.getDefaultLength(0));
}
}
if (column.getColumnMetaData().getLength() == null)
{