http://bugzilla.novell.com/show_bug.cgi?id=536474

User [email protected] added comment
http://bugzilla.novell.com/show_bug.cgi?id=536474#c5


Zoltan Varga <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|io-layer                    |Sys.Data
         AssignedTo|[email protected]            |[email protected]
                   |                            |vo.novell.com
            Product|Mono: Runtime               |Mono: Class Libraries




--- Comment #5 from Zoltan Varga <[email protected]>  2009-09-09 15:37:06 MDT ---
The new version fails for me as well, but not because of a runtime problem,
but because the 
            s.Target.Merge(s.Source);
line never finishes, instead consuming all available memory.

The following testcase reproduces the problem:
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
using System;
using System.Data;

public class  Tests
{
    public static void Main (String[] args) {
            DataTable dataTable = new DataTable("Test");
            dataTable.Columns.Add("Test");
            dataTable.Rows.Add("Test");
            DataSet dataSet = new DataSet("Test");
            dataSet.Tables.Add(dataTable);

        dataSet.Merge (dataTable);
    }
}
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

-> Sys.Data

-- 
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to