Merge branch 'master' of git://github.com/hibernate/hibernate-core

This commit is contained in:
JPAV 2011-03-08 16:31:47 -06:00
commit 78136e02ff
2 changed files with 1 additions and 6 deletions

View File

@ -89,7 +89,7 @@ public class HSQLDialect extends Dialect {
}
registerColumnType( Types.BIGINT, "bigint" );
registerColumnType( Types.BINARY, "binary" );
registerColumnType( Types.BINARY, "binary($l)" );
registerColumnType( Types.BIT, "bit" );
registerColumnType( Types.BOOLEAN, "boolean" );
registerColumnType( Types.CHAR, "char($l)" );

View File

@ -247,11 +247,6 @@ public class AvailableSettings {
*/
public static final String NAMING_STRATEGY = "hibernate.ejb.naming_strategy";
/**
* PersisterClassResolver class name, the class has to gave a no-arg constructor
*/
public static final String PERSISTER_CLASS_PROVIDER = "hibernate.ejb.persister_class_provider";
/**
* Event configuration should follow the following pattern
* hibernate.ejb.event.[eventType] f.q.c.n.EventListener1, f.q.c.n.EventListener12 ...