[hibernate-commits] Hibernate SVN: r15885 - core/branches/Branch_3_2/src/org/hibernate/dialect.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Wed Feb 4 03:42:56 EST 2009


Author: jcosta at redhat.com
Date: 2009-02-04 03:42:56 -0500 (Wed, 04 Feb 2009)
New Revision: 15885

Modified:
   core/branches/Branch_3_2/src/org/hibernate/dialect/SybaseDialect.java
Log:
HHH-3640 - Added bit_length and mod to SybaseDialect. 

Modified: core/branches/Branch_3_2/src/org/hibernate/dialect/SybaseDialect.java
===================================================================
--- core/branches/Branch_3_2/src/org/hibernate/dialect/SybaseDialect.java	2009-02-04 08:42:07 UTC (rev 15884)
+++ core/branches/Branch_3_2/src/org/hibernate/dialect/SybaseDialect.java	2009-02-04 08:42:56 UTC (rev 15885)
@@ -103,6 +103,9 @@
 		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);
 	}
 




More information about the hibernate-commits mailing list