use of org.apache.jena.dboe.index.IndexParams in project jena by apache.
the class TestTupleIndexRecord method create.
@Override
protected TupleIndexRecord create(String description) {
IndexParams indexParams = StoreParams.getDftStoreParams();
RangeIndex rIdx = BuildTestLib.buildRangeIndex(FileSet.mem(), factory, indexParams);
TupleMap tmap = TupleMap.create("SPO", description);
TupleIndexRecord index = new TupleIndexRecord(3, tmap, description, factory, rIdx);
return index;
}
use of org.apache.jena.dboe.index.IndexParams in project jena by apache.
the class TestTupleIndexRecordDirect method create.
static TupleIndexRecord create(String description) {
IndexParams indexParams = StoreParams.getDftStoreParams();
RangeIndex rIdx = BuildTestLib.buildRangeIndex(FileSet.mem(), factory, indexParams);
TupleMap tmap = TupleMap.create("SPO", description);
TupleIndexRecord index = new TupleIndexRecord(3, tmap, description, factory, rIdx);
return index;
}
Aggregations