(double newScale)
| 330 | } |
| 331 | |
| 332 | @Override |
| 333 | public boolean checkMemory(double newScale) throws IOException { |
| 334 | memoryLimit = Math.round(stripeSize * newScale); |
| 335 | return checkMemory(); |
| 336 | } |
| 337 | |
| 338 | private boolean checkMemory() throws IOException { |
| 339 | long size = rowsSinceCheck < rowsPerCheck && stripeSizePerCheck == 0 |
no test coverage detected