From: daniel f. (JIRA) <no...@at...> - 2006-06-13 22:23:36
|
mysql dialect doesn't contain standard deviation/std() function --------------------------------------------------------------- Key: HHH-1835 URL: http://opensource.atlassian.com/projects/hibernate/browse/HHH-1835 Project: Hibernate3 Type: Bug Components: core Versions: 3.1.3 Environment: hibernate 3.1.3, mysql 4.1.7 Reporter: daniel flesner the oracle9 dialect has the stddev() as: registerFunction( "stddev", new StandardSQLFunction("stddev", Hibernate.DOUBLE) ); the mysql dialect doesn't have a definition, i believe it should be: registerFunction( "stddev", new StandardSQLFunction("std", Hibernate.DOUBLE) ); -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira |