sc.addProperty(GraphDatabaseConfiguration.INSTANCE_RID_SHORT_KEY, (short) i);
KeyColumnValueStore idStore = manager[i].openDatabase("ids");
if (storeFeatures.supportsTransactions())
idAuthorities[i] = new TransactionalIDManager(idStore, manager[i], sc);
else if (storeFeatures.supportsConsistentKeyOperations())
idAuthorities[i] = new ConsistentKeyIDManager(idStore, manager[i], sc);
else throw new IllegalArgumentException("Cannot open id store");
}
}