.addCriteria(getUidToDocumentCache().getSearchAttribute("CorrectionToInstant")
.gt(versionCorrection.withLatestFixed(InstantExtractor.MAX_INSTANT.minusNanos(1)).getCorrectedTo().toString()))
.execute();
// Found a matching cached document
if (results.size() == 1 && results.all().get(0).getValue() != null) {
@SuppressWarnings("unchecked")
D result = (D) results.all().get(0).getValue();
// Debug: check result against underlying
if (TEST_AGAINST_UNDERLYING) {