Exemplo n.º 1
0
            public DDLEventTestData()
            {
                tables = new TableConf[2];
                //first table has no column list
                tables[0]      = new TableConf();
                tables[0].Name = "test1";

                //second one has column list
                tables[1]            = new TableConf();
                tables[1].Name       = "test2";
                tables[1].ColumnList = new string[] { "column1", "column2" };

                dataUtils = new TestDataUtils(TServer.MASTER);
                dataUtils.ReloadData("test1");
            }