From: Date: November 6 2008 9:39pm Subject: Connector/NET commit: r1444 - in branches/5.2: . MySql.Data/Provider/Source List-Archive: http://lists.mysql.com/commits/58113 X-Bug: 40382 Message-Id: <200811062039.mA6Kd5nY005670@bk-internal.mysql.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 {