[Mono-bugs] [Bug 80075][Nor] Changed - bad performance problem with access of datarow column

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Thu Nov 30 05:10:45 EST 2006


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by informatique.internet at fiducial.fr.

http://bugzilla.ximian.com/show_bug.cgi?id=80075

--- shadow/80075	2006-11-29 05:04:56.000000000 -0500
+++ shadow/80075.tmp.24405	2006-11-30 05:10:45.000000000 -0500
@@ -149,6 +149,20 @@
 where to use CaseInsensitiveComparer in this case...
 
 A Nagappan,
 
 I've rewritten my patch using mono coding standard... For the generic
 test case, I don't know how Nunit works...
+
+------- Additional Comments From informatique.internet at fiducial.fr  2006-11-30 05:10 -------
+There is a potential bug with the previous version of the patch 
+
+in the case of you do :
+dt.Columns.Add("nom_colonne1",typeof(string));
+dt.Columns.Add("NOM_COLONNE1",typeof(string));
+dt.Columns.Remove("nom_colonne1",typeof(string));
+
+int i=dt.Columns.IndexOf("nom_colonne1"); 
+
+i use to be -1... which is false!
+
+The new patch resolves this issue!


More information about the mono-bugs mailing list