/*
* tdb.file.type=rangeindex # Service provided.
* tdb.file.impl=bplustree # Implementation
* tdb.file.impl.version=bplustree-v1
*/
FileSet fs = new FileSet(location, indexName) ;
// Physical
MetaFile metafile = fs.getMetaFile() ;
metafile.checkOrSetMetadata("tdb.file.type", "rangeindex") ;
String indexType = metafile.getOrSetDefault("tdb.file.impl", "bplustree") ;
if ( ! indexType.equals("bplustree") )
{
log.error("Unknown index type: "+indexType) ;