HHH-3640 - Added bit_length and mod to SybaseDialect.
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15884 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
cc78cbf6fe
commit
3daba271a9
|
@ -126,6 +126,9 @@ public class SybaseDialect extends Dialect {
|
|||
registerFunction( "trim", new SQLFunctionTemplate( Hibernate.STRING, "ltrim(rtrim(?1))") );
|
||||
registerFunction( "locate", new CharIndexFunction() );
|
||||
|
||||
registerFunction( "mod", new SQLFunctionTemplate( Hibernate.INTEGER, "?1 % ?2" ) );
|
||||
registerFunction( "bit_length", new SQLFunctionTemplate( Hibernate.INTEGER, "datalength(?1) * 8" ) );
|
||||
|
||||
getDefaultProperties().setProperty(Environment.STATEMENT_BATCH_SIZE, NO_BATCH);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue