Modified:
branches/5.2/CHANGES
branches/5.2/MySql.Data/Provider/Source/SchemaProvider.cs
Log:
- Fixed typo in the collection returned when you request the MetaDataCollections collection. The
NumberOfRestrictions column was missing the trailing s. (bug #43990)
Modified: branches/5.2/CHANGES
===================================================================
--- branches/5.2/CHANGES 2009-03-31 15:51:38 UTC (rev 1534)
+++ branches/5.2/CHANGES 2009-03-31 16:50:05 UTC (rev 1535)
@@ -25,6 +25,8 @@
- Fixed RemoveUsersFromRoles and DeleteRole where they were not calling transactionscope.Complete.
This meant that on systems where the provider tables are transaction aware the changes could be
rolled back in every case (bug #43553)
+- Fixed typo in the collection returned when you request the MetaDataCollections collection. The
+ NumberOfRestrictions column was missing the trailing s. (bug #43990)
Version 5.2.5 - 11/14/2008
- fixed problem with package registration that kept the DDEX provider from working (bug #40726)
Modified: branches/5.2/MySql.Data/Provider/Source/SchemaProvider.cs
===================================================================
--- branches/5.2/MySql.Data/Provider/Source/SchemaProvider.cs 2009-03-31 15:51:38 UTC (rev 1534)
+++ branches/5.2/MySql.Data/Provider/Source/SchemaProvider.cs 2009-03-31 16:50:05 UTC (rev 1535)
@@ -616,7 +616,7 @@
DataTable dt = new DataTable("MetaDataCollections");
dt.Columns.Add(new DataColumn("CollectionName", typeof (string)));
- dt.Columns.Add(new DataColumn("NumberOfRestriction", typeof (int)));
+ dt.Columns.Add(new DataColumn("NumberOfRestrictions", typeof(int)));
dt.Columns.Add(new DataColumn("NumberOfIdentifierParts", typeof (int)));
FillTable(dt, collections);
| Thread |
|---|
| • Connector/NET commit: r1535 - in branches/5.2: . MySql.Data/Provider/Source | rburnett | 31 Mar |