From: <pa...@us...> - 2011-03-05 17:49:42
|
Revision: 5427 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=5427&view=rev Author: patearl Date: 2011-03-05 17:49:36 +0000 (Sat, 05 Mar 2011) Log Message: ----------- Tests: Ignore the missing extract function on SQLite. It's already ignored in MSSQL. Modified Paths: -------------- trunk/nhibernate/src/NHibernate.Test/HQL/HQLFunctions.cs Modified: trunk/nhibernate/src/NHibernate.Test/HQL/HQLFunctions.cs =================================================================== --- trunk/nhibernate/src/NHibernate.Test/HQL/HQLFunctions.cs 2011-03-05 17:26:23 UTC (rev 5426) +++ trunk/nhibernate/src/NHibernate.Test/HQL/HQLFunctions.cs 2011-03-05 17:49:36 UTC (rev 5427) @@ -22,7 +22,7 @@ notSupportedStandardFunction.Add("bit_length", new[] { typeof(MsSql2000Dialect), typeof(MsSql2005Dialect), typeof(MsSql2008Dialect), typeof(Oracle8iDialect), typeof(Oracle9iDialect), typeof(Oracle10gDialect) }); notSupportedStandardFunction.Add("extract", - new[] { typeof(MsSql2000Dialect), typeof(MsSql2005Dialect), typeof(MsSql2008Dialect) }); + new[] { typeof(MsSql2000Dialect), typeof(MsSql2005Dialect), typeof(MsSql2008Dialect), typeof(SQLiteDialect) }); notSupportedStandardFunction.Add("nullif", new[] { typeof(Oracle8iDialect)}); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |