From: <dar...@us...> - 2009-06-09 17:32:54
|
Revision: 4432 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=4432&view=rev Author: darioquintana Date: 2009-06-09 17:32:21 +0000 (Tue, 09 Jun 2009) Log Message: ----------- NH-1824 fixed: MySQL: support for Temporary Tables Modified Paths: -------------- trunk/nhibernate/src/NHibernate/Dialect/MySQLDialect.cs Modified: trunk/nhibernate/src/NHibernate/Dialect/MySQLDialect.cs =================================================================== --- trunk/nhibernate/src/NHibernate/Dialect/MySQLDialect.cs 2009-06-09 14:11:03 UTC (rev 4431) +++ trunk/nhibernate/src/NHibernate/Dialect/MySQLDialect.cs 2009-06-09 17:32:21 UTC (rev 4432) @@ -231,5 +231,15 @@ { return " drop index " + constraintName; } + + public override bool SupportsTemporaryTables + { + get { return true; } + } + + public override string CreateTemporaryTableString + { + get { return "create temporary table if not exists"; } + } } } \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |