From: Bryan T. <tho...@us...> - 2007-02-17 21:34:25
|
Update of /cvsroot/cweb/bigdata/src/test/com/bigdata/scaleup In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv12401/src/test/com/bigdata/scaleup Modified Files: TestMetadataIndex.java Log Message: Working through transactional isolation. Index: TestMetadataIndex.java =================================================================== RCS file: /cvsroot/cweb/bigdata/src/test/com/bigdata/scaleup/TestMetadataIndex.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TestMetadataIndex.java 15 Feb 2007 22:01:19 -0000 1.5 --- TestMetadataIndex.java 17 Feb 2007 21:34:21 -0000 1.6 *************** *** 61,64 **** --- 61,65 ---- import com.bigdata.objndx.AbstractBTreeTestCase; import com.bigdata.objndx.BTree; + import com.bigdata.objndx.BTreeMetadata; import com.bigdata.objndx.BatchInsert; import com.bigdata.objndx.FusedView; *************** *** 268,272 **** // re-load the index. ! md = new MetadataIndex(store,MetadataIndexMetadata.read(store, addr)); assertEquals("name","abc",md.getName()); --- 269,273 ---- // re-load the index. ! md = (MetadataIndex)BTreeMetadata.load(store, addr); assertEquals("name","abc",md.getName()); |