assertEquals(5, mergedGraph.getList("CUSTOMER").size());
}
public void testSingleTableMergeThreeGraphs() throws Exception {
DAS das = DAS.FACTORY.createDAS(getConnection());
Command select = das.createCommand("Select ID, LASTNAME, ADDRESS from CUSTOMER where ID <= ?");
select.setParameter(1, "3");
DataObject graph1 = select.executeQuery();
assertEquals(3, graph1.getList("CUSTOMER").size());
select.setParameter(1, "4");