[Mono-bugs] [Bug 72426][Maj] Changed - Cannot filter by Guid type columns in a DataView

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Thu, 10 Feb 2005 15:00:48 -0500 (EST)


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 atsushi@ximian.com.

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

--- shadow/72426	2005-02-10 14:55:17.000000000 -0500
+++ shadow/72426.tmp.18756	2005-02-10 15:00:48.000000000 -0500
@@ -66,6 +66,22 @@
 Created an attachment (id=14178)
 Example to reproduce the error when filtering by Guid in a DataView
 
 
 ------- Additional Comments From atsushi@ximian.com  2005-02-10 14:55 -------
 Thanks. Will commit the patch soon.
+
+------- Additional Comments From atsushi@ximian.com  2005-02-10 15:00 -------
+No... actually the Convert.cs patch was wrong.
+
+using System;
+
+public class Test
+{
+        public static void Main ()
+        {
+                Convert.ChangeType
+("03bb5a35-b4b3-4771-913e-34707646441d", typeof (Guid));
+        }
+}
+
+It should raise an error as MS.NET does.