protected double treeScan(int rowWidth, long nRows) {
return 10 + nRows * .5;
}
public synchronized CostEstimate adjustCostEstimate(CostEstimate costEstimate) {
return new CostEstimate(costEstimate.getRowCount(),
random.nextDouble() * costEstimate.getCost());
}