HHH-3454 : allow segment value default to be the entity table name

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15148 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Steve Ebersole 2008-08-29 14:49:34 +00:00
parent affc3a60cb
commit a8142fdf63
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ import org.hibernate.util.StringHelper;
public class TableGenerator extends TransactionHelper implements PersistentIdentifierGenerator, Configurable {
private static final Logger log = LoggerFactory.getLogger( TableGenerator.class );
public static final String CONFIG_PREFER_SEGMENT_PER_ENTITY = "hibernate.id.enhanced.table.prefer_segment_per_entity";
public static final String CONFIG_PREFER_SEGMENT_PER_ENTITY = "prefer_entity_table_as_segment_value";
public static final String TABLE_PARAM = "table_name";
public static final String DEF_TABLE = "hibernate_sequences";