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

git-svn-id: https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_2@15146 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Steve Ebersole 2008-08-29 14:48:38 +00:00
parent 202de56484
commit d01172ac37
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ import org.hibernate.util.StringHelper;
public class TableGenerator extends TransactionHelper implements PersistentIdentifierGenerator, Configurable {
private static final Log log = LogFactory.getLog( 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";