IndexFactoryBPlusTree idx = new IndexFactoryBPlusTree() ;
return new IndexBuilder(idx, idx) ;
}
case ExtHash:
{
IndexFactoryExtHash idxFactory = new IndexFactoryExtHash() ;
IndexFactoryBPlusTree idx = new IndexFactoryBPlusTree() ;
return new IndexBuilder(idxFactory, idx) ;
}
}
throw new TDBException("Unrecognized index type: " + indexType) ;