|
From: <pa...@us...> - 2011-03-06 04:49:44
|
Revision: 5431
http://nhibernate.svn.sourceforge.net/nhibernate/?rev=5431&view=rev
Author: patearl
Date: 2011-03-06 04:49:38 +0000 (Sun, 06 Mar 2011)
Log Message:
-----------
Ignore bit_length function for SQLite.
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-06 03:59:45 UTC (rev 5430)
+++ trunk/nhibernate/src/NHibernate.Test/HQL/HQLFunctions.cs 2011-03-06 04:49:38 UTC (rev 5431)
@@ -20,11 +20,11 @@
notSupportedStandardFunction.Add("locate",
new[] { typeof(FirebirdDialect), typeof(PostgreSQLDialect), typeof(SQLiteDialect) });
notSupportedStandardFunction.Add("bit_length",
- new[] { typeof(MsSql2000Dialect), typeof(MsSql2005Dialect), typeof(MsSql2008Dialect), typeof(Oracle8iDialect), typeof(Oracle9iDialect), typeof(Oracle10gDialect) });
+ new[] { typeof(MsSql2000Dialect), typeof(MsSql2005Dialect), typeof(MsSql2008Dialect), typeof(Oracle8iDialect), typeof(Oracle9iDialect), typeof(Oracle10gDialect), typeof(SQLiteDialect) });
notSupportedStandardFunction.Add("extract",
new[] { typeof(MsSql2000Dialect), typeof(MsSql2005Dialect), typeof(MsSql2008Dialect), typeof(SQLiteDialect) });
notSupportedStandardFunction.Add("nullif",
- new[] { typeof(Oracle8iDialect)});
+ new[] { typeof(Oracle8iDialect)});
}
private bool IsOracleDialect()
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|