|
From: Bryan T. <tho...@us...> - 2007-04-12 23:59:52
|
Update of /cvsroot/cweb/bigdata/src/java/com/bigdata/scaleup In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv2548/src/java/com/bigdata/scaleup Modified Files: PartitionMetadata.java Log Message: Added a Sesame 1.x SAIL implementation. This is NOT intended for production use. It is just being done to gain a high-level query language integration for the triple store. Index: PartitionMetadata.java =================================================================== RCS file: /cvsroot/cweb/bigdata/src/java/com/bigdata/scaleup/PartitionMetadata.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** PartitionMetadata.java 29 Mar 2007 17:01:33 -0000 1.5 --- PartitionMetadata.java 12 Apr 2007 23:59:35 -0000 1.6 *************** *** 44,49 **** package com.bigdata.scaleup; ! import java.io.DataInputStream; ! import java.io.DataOutputStream; import java.io.Externalizable; import java.io.IOException; --- 44,49 ---- package com.bigdata.scaleup; ! import java.io.DataInput; ! import java.io.DataOutput; import java.io.Externalizable; import java.io.IOException; *************** *** 52,55 **** --- 52,56 ---- import com.bigdata.isolation.UnisolatedBTree; import com.bigdata.journal.Journal; + import com.bigdata.objndx.DataOutputBuffer; import com.bigdata.objndx.IValueSerializer; import com.bigdata.objndx.IndexSegment; *************** *** 270,274 **** } ! public void putValues(DataOutputStream os, Object[] values, int nvals) throws IOException { --- 271,275 ---- } ! public void putValues(DataOutputBuffer os, Object[] values, int nvals) throws IOException { *************** *** 321,325 **** } ! public void getValues(DataInputStream is, Object[] values, int nvals) throws IOException { --- 322,326 ---- } ! public void getValues(DataInput is, Object[] values, int nvals) throws IOException { |