List:Commits« Previous MessageNext Message »
From:rburnett Date:November 6 2008 8:39pm
Subject:Connector/NET commit: r1444 - in branches/5.2: . MySql.Data/Provider/Source
View as plain text  
Modified:
   branches/5.2/CHANGES
   branches/5.2/MySql.Data/Provider/Source/ISSchemaProvider.cs
Log:
- fixed bug where provider was attempting to use the new parameters I_S view on servers that didn't have it (bug #40382)

Modified: branches/5.2/CHANGES
===================================================================
--- branches/5.2/CHANGES	2008-10-22 15:39:42 UTC (rev 1443)
+++ branches/5.2/CHANGES	2008-11-06 20:39:05 UTC (rev 1444)
@@ -28,6 +28,8 @@
   timed out and was cancelled.  (bug #40091)
 - fixed problem where using respect binary flags would not use the connection char set
   and therefore return strings with a bad encoding.
+- fixed bug where provider was attempting to use the new parameters I_S view on servers
+  that didn't have it (bug #40382)
   
   
 Version 5.2.3 - 8/14/08

Modified: branches/5.2/MySql.Data/Provider/Source/ISSchemaProvider.cs
===================================================================
--- branches/5.2/MySql.Data/Provider/Source/ISSchemaProvider.cs	2008-10-22 15:39:42 UTC (rev 1443)
+++ branches/5.2/MySql.Data/Provider/Source/ISSchemaProvider.cs	2008-11-06 20:39:05 UTC (rev 1444)
@@ -286,7 +286,7 @@
         public virtual DataTable GetProcedureParameters(string[] restrictions,
             DataTable routines)
         {
-            if (connection.driver.Version.isAtLeast(6, 0, 0))
+            if (connection.driver.Version.isAtLeast(6, 0, 6))
                 return GetParametersFromIS(restrictions);
             else
             {

Thread
Connector/NET commit: r1444 - in branches/5.2: . MySql.Data/Provider/Sourcerburnett6 Nov